QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#98699#6244. سینما بررهAdorableWA 2ms3376kbC++14133b2023-04-19 20:45:432023-04-19 20:45:44

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:45:44]
  • 评测
  • 测评结果:WA
  • 用时:2ms
  • 内存:3376kb
  • [2023-04-19 20:45:43]
  • 提交

answer

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

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 2ms
memory: 3376kb

input:

6 12

output:

18

result:

wrong answer 1st lines differ - expected: '6', found: '18'