結果
問題 | No.565 回転拡大 |
ユーザー | htensai |
提出日時 | 2019-11-14 20:33:17 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 129 ms / 2,000 ms |
コード長 | 1,267 bytes |
コンパイル時間 | 2,636 ms |
コンパイル使用メモリ | 77,084 KB |
実行使用メモリ | 41,364 KB |
最終ジャッジ日時 | 2024-09-21 23:59:38 |
合計ジャッジ時間 | 7,635 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 123 ms
41,192 KB |
testcase_01 | AC | 119 ms
40,888 KB |
testcase_02 | AC | 119 ms
39,872 KB |
testcase_03 | AC | 121 ms
41,124 KB |
testcase_04 | AC | 122 ms
41,224 KB |
testcase_05 | AC | 115 ms
41,364 KB |
testcase_06 | AC | 103 ms
40,104 KB |
testcase_07 | AC | 104 ms
40,176 KB |
testcase_08 | AC | 102 ms
39,888 KB |
testcase_09 | AC | 106 ms
40,056 KB |
testcase_10 | AC | 107 ms
39,952 KB |
testcase_11 | AC | 116 ms
40,980 KB |
testcase_12 | AC | 120 ms
41,044 KB |
testcase_13 | AC | 122 ms
41,296 KB |
testcase_14 | AC | 117 ms
41,128 KB |
testcase_15 | AC | 108 ms
39,908 KB |
testcase_16 | AC | 124 ms
41,044 KB |
testcase_17 | AC | 119 ms
39,936 KB |
testcase_18 | AC | 117 ms
40,740 KB |
testcase_19 | AC | 110 ms
39,976 KB |
testcase_20 | AC | 108 ms
40,132 KB |
testcase_21 | AC | 119 ms
41,140 KB |
testcase_22 | AC | 117 ms
41,168 KB |
testcase_23 | AC | 111 ms
39,888 KB |
testcase_24 | AC | 129 ms
41,264 KB |
testcase_25 | AC | 121 ms
41,156 KB |
testcase_26 | AC | 127 ms
41,208 KB |
testcase_27 | AC | 126 ms
41,136 KB |
testcase_28 | AC | 117 ms
40,328 KB |
testcase_29 | AC | 118 ms
41,348 KB |
testcase_30 | AC | 123 ms
41,108 KB |
testcase_31 | AC | 116 ms
41,140 KB |
testcase_32 | AC | 122 ms
41,152 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int r = sc.nextInt(); int k = sc.nextInt(); int h = sc.nextInt(); int w = sc.nextInt(); char[][] org = new char[h][]; for (int i = 0; i < h; i++) { org[i] = sc.next().toCharArray(); } char[][] next; if (r == 0) { next = org; } else { if (r == 180) { next = new char[h][w]; } else { next = new char[w][h]; } for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if (r == 90) { next[j][h - i - 1] = org[i][j]; } else if (r == 180) { next[h - i - 1][w - j -1] = org[i][j]; } else { next[w - j - 1][i] = org[i][j]; } } } } StringBuilder sb = new StringBuilder(); for (int i = 0; i < next.length; i++) { StringBuilder tmp = new StringBuilder(); for (int j = 0; j < next[i].length; j++) { for (int a = 0; a < k; a++) { tmp.append(next[i][j]); } } tmp.append("\n"); for (int a = 0; a < k; a++) { sb.append(tmp); } } System.out.print(sb); } }