Submission #1686869


Source Code Expand

#include<iostream>
using namespace std;

char s[50][50];

int main(){
    int n;
    cin >> n;
    for(int i = 0; i < n; i++){
        for(int j = 0; j < n; j++){
            cin >> s[i][j];
        }
    }
    for(int i = 0; i < n; i++){
        for(int j = n - 1; j >= 0; j--){
            cout << s[j][i];
        }
        cout << endl;
    }
}

Submission Info

Submission Time
Task B - 回転
User tdtk
Language C++14 (Clang 3.8.0)
Score 100
Code Size 367 Byte
Status AC
Exec Time 3 ms
Memory 384 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 11
Set Name Test Cases
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt
Case Name Status Exec Time Memory
000.txt AC 1 ms 256 KB
001.txt AC 1 ms 256 KB
002.txt AC 3 ms 384 KB
003.txt AC 1 ms 256 KB
004.txt AC 2 ms 256 KB
005.txt AC 1 ms 256 KB
006.txt AC 2 ms 256 KB
007.txt AC 1 ms 256 KB
008.txt AC 2 ms 256 KB
009.txt AC 1 ms 256 KB
010.txt AC 2 ms 256 KB