Submission #1381310


Source Code Expand

#include<iostream>
#include<string>
#include<vector>
using namespace std;
 
int main() {

  int n;
  vector<string> s;
  cin >> n;
  s.resize(n);

  for(int i=0; i<n; i++){
    cin >> s[i];
  }

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

  return 0;
}

Submission Info

Submission Time
Task B - 回転
User tenkyu
Language Bash (GNU bash v4.3.11)
Score 0
Code Size 341 Byte
Status RE
Exec Time 29 ms
Memory 1648 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
RE × 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 RE 29 ms 1648 KB
001.txt RE 2 ms 504 KB
002.txt RE 2 ms 504 KB
003.txt RE 2 ms 504 KB
004.txt RE 2 ms 504 KB
005.txt RE 2 ms 504 KB
006.txt RE 2 ms 504 KB
007.txt RE 2 ms 504 KB
008.txt RE 2 ms 504 KB
009.txt RE 2 ms 504 KB
010.txt RE 2 ms 504 KB