QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#1132 | #56. Nim Product | WLSJ666# | 0 | 2ms | 3484kb | C++11 | 172b | 2019-11-11 15:52:03 | 2021-12-19 02:45:58 |
Judging History
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'