CSES - Putka Open 2015 – 2/6 - Results
Submission details
Task:Sudoku
Sender:Henrik Lievonen
Submission time:2015-08-15 17:59:27 +0300
Language:C++
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED100
Test results
testverdicttime
#1ACCEPTED0.06 sdetails
#2ACCEPTED0.04 sdetails
#3ACCEPTED0.06 sdetails
#4ACCEPTED0.05 sdetails
#5ACCEPTED0.05 sdetails

Code

#include <iostream>
#include <string>
#include <map>

using namespace std;

string sol = string()
+ "123456789\n"
+ "456789123\n"
+ "789123456\n"
+ "234567891\n"
+ "567891234\n"
+ "891234567\n"
+ "345678912\n"
+ "678912345\n"
+ "912345678";

int main() {
    string l;
    cin >> l;
    map<char, char> m;
    m['\n'] = '\n';
    for (int i = 0; i < 9; i++)
        m['1' + i] = l[i];
    
    for (char c : sol) {
        cout << m[c];
    }
}

Test details

Test 1

Verdict: ACCEPTED

input
592836471

correct output
592836471
836471592
471592836
928364715
364715928
...

user output
592836471
836471592
471592836
928364715
364715928
...

Test 2

Verdict: ACCEPTED

input
672935418

correct output
672935418
935418672
418672935
729354186
354186729
...

user output
672935418
935418672
418672935
729354186
354186729
...

Test 3

Verdict: ACCEPTED

input
329174658

correct output
329174658
174658329
658329174
291746583
746583291
...

user output
329174658
174658329
658329174
291746583
746583291
...

Test 4

Verdict: ACCEPTED

input
376958421

correct output
376958421
958421376
421376958
769584213
584213769
...

user output
376958421
958421376
421376958
769584213
584213769
...

Test 5

Verdict: ACCEPTED

input
875694321

correct output
875694321
694321875
321875694
756943218
943218756
...

user output
875694321
694321875
321875694
756943218
943218756
...