Task: | Alien Invasion II |
Sender: | Alex Herrero |
Submission time: | 2020-09-19 13:18:57 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.01 s | details |
#2 | WRONG ANSWER | 0.01 s | details |
#3 | WRONG ANSWER | 0.01 s | details |
Code
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; cout << n*10 << endl << n*2 << " " << 5 << endl; }
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
2368469234876449 |
correct output |
---|
22368469234876449 3 7456156411625483 |
user output |
---|
-10 -2 5 |
Test 2
Verdict: WRONG ANSWER
input |
---|
292929292929292929292929292931 |
correct output |
---|
129292929292929292929292929293... |
user output |
---|
-10 -2 5 |
Test 3
Verdict: WRONG ANSWER
input |
---|
292929292929292929292929292979 |
correct output |
---|
129292929292929292929292929297... |
user output |
---|
-10 -2 5 |