結果
| 問題 | No.3703 回転 (Rotation) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-12 08:42:46 |
| 言語 | C++23(gcc16) (gcc 16.1.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 16 ms / 2,000 ms |
| + 914µs | |
| コード長 | 367 bytes |
| 記録 | |
| コンパイル時間 | 3,031 ms |
| コンパイル使用メモリ | 338,536 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-09-12 08:42:53 |
| 合計ジャッジ時間 | 5,059 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using Graph = vector<vector<int>>;
int main(){
int h,w; cin >> h >> w;
vector<string>table(h);
for(int i=0; i < h;i++) cin >> table[i];
for(int i=0; i < w; i++){
for(int j=0; j < h;j++){
cout << table[h-1-j][i];
}
cout << "" << endl;
}
}