Task: | Sudoku |
Sender: | siirikuoppala |
Submission time: | 2016-07-29 14:43:51 +0300 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.06 s | details |
#2 | WRONG ANSWER | 0.06 s | details |
#3 | WRONG ANSWER | 0.05 s | details |
#4 | WRONG ANSWER | 0.06 s | details |
#5 | WRONG ANSWER | 0.05 s | details |
Code
#include <iostream> using namespace std; int t[9][9]; int main(){ string s; cin >> s; for(int i=0; i<9; ++i){ t[0][i]=s[i]-'0'; } for(int k=0; k<9; k+=3){ int a=0, b=0; for(int i=1; i<9; ++i){ a+=3; if(i%3==0) ++b; cout << b <<"\n"; for(int o=0; o<3; ++o) t[i][(k+a)%9+(b+o)%3]=t[0][k+o]; }for(int i=0; i<9; ++i) { for(int j=0; j<9; ++j) cout << t[i][j]; cout << "\n"; } } }
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
592836471 |
correct output |
---|
592836471 836471592 471592836 928364715 364715928 ... |
user output |
---|
0 0 1 1 1 ... |
Test 2
Verdict: WRONG ANSWER
input |
---|
672935418 |
correct output |
---|
672935418 935418672 418672935 729354186 354186729 ... |
user output |
---|
0 0 1 1 1 ... |
Test 3
Verdict: WRONG ANSWER
input |
---|
329174658 |
correct output |
---|
329174658 174658329 658329174 291746583 746583291 ... |
user output |
---|
0 0 1 1 1 ... |
Test 4
Verdict: WRONG ANSWER
input |
---|
376958421 |
correct output |
---|
376958421 958421376 421376958 769584213 584213769 ... |
user output |
---|
0 0 1 1 1 ... |
Test 5
Verdict: WRONG ANSWER
input |
---|
875694321 |
correct output |
---|
875694321 694321875 321875694 756943218 943218756 ... |
user output |
---|
0 0 1 1 1 ... |