QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#848340#9989. Harmful Machine LearningGraygooWA 15ms10520kbPython3369b2025-01-08 19:42:322025-01-08 19:42:32

Judging History

你现在查看的是最新测评结果

  • [2025-01-08 19:42:32]
  • 评测
  • 测评结果:WA
  • 用时:15ms
  • 内存:10520kb
  • [2025-01-08 19:42:32]
  • 提交

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'