如何根据python中的n个测试用例读取输入?
How to read input according to n number of test cases in python?
我在竞争性编程中遇到了一种新型问题,我必须根据给定的测试用例读取 n 行输入。
示例输入格式
那么,我应该怎么读这个,你能一步一步地给我解释一下吗?等待快速有效的解决方案。
示例输入
2 - (no. of test cases)
STRING1
string2
和你解决一个测试用例一样。
区别在于您应该将解决问题的逻辑放在 for
循环中,以便循环 T
次以处理多个测试用例。
示例:
def solve_the_problem(p):
# Your logic here
# Number of test cases
T = input()
for x in range(T):
# Each input for test case
p = input()
solve_the_problem(p)
我在竞争性编程中遇到了一种新型问题,我必须根据给定的测试用例读取 n 行输入。
示例输入格式
那么,我应该怎么读这个,你能一步一步地给我解释一下吗?等待快速有效的解决方案。
示例输入
2 - (no. of test cases)
STRING1
string2
和你解决一个测试用例一样。
区别在于您应该将解决问题的逻辑放在 for
循环中,以便循环 T
次以处理多个测试用例。
示例:
def solve_the_problem(p):
# Your logic here
# Number of test cases
T = input()
for x in range(T):
# Each input for test case
p = input()
solve_the_problem(p)