結果
問題 | No.565 回転拡大 |
ユーザー | 41Toame |
提出日時 | 2018-09-04 20:23:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,234 bytes |
コンパイル時間 | 1,271 ms |
コンパイル使用メモリ | 160,000 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 16:15:05 |
合計ジャッジ時間 | 2,395 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | WA | - |
testcase_25 | AC | 1 ms
5,248 KB |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | WA | - |
testcase_29 | AC | 1 ms
5,248 KB |
testcase_30 | AC | 1 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 1 ms
5,248 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define ll long long int #define rep(i,n) for( int i = 0; i < n; i++ ) #define rrep(i,n) for( int i = n; i >= 0; i-- ) #define REP(i,s,t) for( int i = s; i <= t; i++ ) #define RREP(i,s,t) for( int i = s; i >= t; i-- ) #define dump(x) cerr << #x << " = " << (x) << endl; #define INF 2000000000 #define mod 1000000007 #define INF2 1000000000000000000 int main(void) { cin.tie(0); ios::sync_with_stdio(false); int R, K; cin >> R >> K; int H, W; cin >> H >> W; char c[H][W]; rep(i, H) rep(j, W) cin >> c[i][j]; char d[H][W]; char e[W][H]; char f[W][H]; rep(i, H) rep(j, W) { e[j][i] = c[i][j]; } if (R == 0) { rep(i, H) rep(j, W) d[i][j] = c[i][j]; } if (R == 180) { rep(i, H) { rep(j, W) { d[i][j] = c[H - i - 1][j]; } } } if (R == 90) { rep(i, W) rep(j, H) f[i][j] = e[i][j]; } if (R == 270) { rep(i, W) { rep(j, H) { f[i][j] = c[W - i - 1][j]; } } } if (R == 0 || R == 180) rep(i, H) { rep(k1, K) { rep(j, W) { rep(k2, K) cout << d[i][j]; } cout << endl; } } else { rep(i, W) { rep(k1, K) { rep(j, H) { rep(k2, K) cout << f[i][j]; } cout << endl; } } } return 0; }