QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#1132#56. Nim ProductWLSJ666#0 2ms3484kbC++11172b2019-11-11 15:52:032021-12-19 02:45:58

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2021-12-19 02:45:58]
  • 评测
  • 测评结果:0
  • 用时:2ms
  • 内存:3484kb
  • [2019-11-11 15:52:03]
  • 提交

answer

#include <iostream>
using namespace std;
int main()
{
   long long A,B,C,D;
   cin >> A >> B >> C;
   D = 0.2 * A + 0.3 * B + 0.5 * C;
   cout << D;
   return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

10 274134852 279286565 744539633

output:

221883740

result:

wrong answer 1st lines differ - expected: '2002382043', found: '221883740'

Test #2:

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

input:

1000 734766235 309378503 610268282

output:

375119322

result:

wrong answer 1st lines differ - expected: '2106551671', found: '375119322'

Test #3:

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

input:

30000 784936363 827067061 800454511

output:

649020439

result:

wrong answer 1st lines differ - expected: '554318281', found: '649020439'

Test #4:

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

input:

30000000 72129929 485897764 129463885

output:

270587860

result:

wrong answer 1st lines differ - expected: '92762235', found: '270587860'