結果
問題 | No.565 回転拡大 |
ユーザー | autumn-eel |
提出日時 | 2017-09-08 23:27:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 861 bytes |
コンパイル時間 | 1,924 ms |
コンパイル使用メモリ | 169,872 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 06:51:41 |
合計ジャッジ時間 | 3,204 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n)for(int i=0;i<(n);i++) using namespace std; char s[200][200]; char t[200][200]; vector<char>a[200],b[200]; int main() { int r,k;scanf("%d%d",&r,&k); int h,w;scanf("%d%d",&h,&w); rep(i,h)scanf("%s",s[i]); //拡大 rep(i,h*k)rep(j,w*k){ a[i].push_back(s[i/k][j/k]); b[j].push_back(s[i/k][j/k]); } //回転 if(r==0){ rep(i,h*k){ rep(j,w*k)printf("%c",a[i][j]); puts(""); } } if(r==90){ rep(i,w*k){ reverse(b[i].begin(),b[i].end()); } rep(i,w*k){ rep(j,h*k)printf("%c",b[i][j]); puts(""); } } if(r==180){ rep(i,h*k){ reverse(a[i].begin(),a[i].end()); } rep(i,h*k){ rep(j,w*k)printf("%c",a[h*k-i-1][j]); puts(""); } } if(r==270){ rep(i,w*k){ reverse(b[i].begin(),b[i].end()); } rep(i,w*k){ rep(j,h*k)printf("%c",b[i][h*k-j-1]); puts(""); } } }