Submission #2692589


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
#define rep(i,s,e) for(int (i) = (s);(i) <= (e);(i)++)

int main(){
  int N;
  cin >> N;
  vector<string> fie(N);
  rep(i,0,N - 1) cin >> fie[i];

  vector<vector<char>> ans(N,vector<char>(N));
  rep(j,0,N - 1){
    for(int i = N - 1;i >= 0;i--){
      ans[j][N - i - 1] = fie[i][j];
    }
  }


  for(auto & s : ans){
    for(auto c : s){
      cout << c;
    }

    cout << endl;
  }
}

Submission Info

Submission Time
Task B - 回転
User niuez
Language C++14 (GCC 5.4.1)
Score 100
Code Size 482 Byte
Status AC
Exec Time 1 ms
Memory 256 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 1 ms 256 KB
003.txt AC 1 ms 256 KB
004.txt AC 1 ms 256 KB
005.txt AC 1 ms 256 KB
006.txt AC 1 ms 256 KB
007.txt AC 1 ms 256 KB
008.txt AC 1 ms 256 KB
009.txt AC 1 ms 256 KB
010.txt AC 1 ms 256 KB