QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#439849#6751. Gamesuibian_xiaozhao#RE 0ms0kbPython3165b2024-06-12 19:36:592024-06-12 19:37:01

Judging History

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

  • [2024-06-12 19:37:01]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2024-06-12 19:36:59]
  • 提交

answer

import sys
input = lambda: sys.stdin.readline().strip()

def solve():
    n = input()
    a = list(map(int, input().split(0)))
    print(min(a))

solve()


Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Dangerous Syscalls

input:

2
7 5

output:


result: