QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#98701#6244. سینما بررهAdorableWA 1ms3512kbC++14142b2023-04-19 20:46:172023-04-19 20:46:18

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-04-19 20:46:18]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3512kb
  • [2023-04-19 20:46:17]
  • 提交

answer

#include <bits/stdc++.h>
auto main() -> signed
{
  int a, b;
  std::cin >> a >> b;
  std::cout << std::min(a, b) << '\n';
  return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3508kb

input:

6 12

output:

6

result:

ok single line: '6'

Test #2:

score: 0
Accepted
time: 1ms
memory: 3512kb

input:

12 8

output:

8

result:

ok single line: '8'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3284kb

input:

15 15

output:

15

result:

ok single line: '15'

Test #4:

score: -100
Wrong Answer
time: 0ms
memory: 3356kb

input:

100000000000000000 1000000000000000000


output:

32765

result:

wrong answer 1st lines differ - expected: '100000000000000000', found: '32765'