QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#848340 | #9989. Harmful Machine Learning | Graygoo | WA | 15ms | 10520kb | Python3 | 369b | 2025-01-08 19:42:32 | 2025-01-08 19:42:32 |
Judging History
answer
import sys
def main():
import sys
import sys
input = sys.stdin.read
data = input().split()
T = int(data[0])
idx = 1
for _ in range(T):
n, x = int(data[idx]), int(data[idx+1])
idx += 2
a = list(map(int, data[idx:idx+n]))
idx += n
print(min(a))
if __name__ == "__main__":
main()
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 15ms
memory: 10520kb
input:
4 3 2 1 2 3 13 4 1 1 4 5 1 4 1 9 1 9 8 1 0 4 2 1 10 100 1000 1 1 114514
output:
1 0 1 114514
result:
wrong answer 1st lines differ - expected: '3', found: '1'