結果
問題 | No.565 回転拡大 |
ユーザー | YamaKasa |
提出日時 | 2018-09-24 22:09:53 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,412 bytes |
コンパイル時間 | 2,938 ms |
コンパイル使用メモリ | 78,180 KB |
実行使用メモリ | 54,636 KB |
最終ジャッジ日時 | 2024-09-24 09:30:52 |
合計ジャッジ時間 | 7,956 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 130 ms
54,220 KB |
testcase_02 | WA | - |
testcase_03 | AC | 131 ms
54,332 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 134 ms
54,412 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 134 ms
54,372 KB |
testcase_13 | WA | - |
testcase_14 | AC | 117 ms
53,032 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 130 ms
54,148 KB |
testcase_24 | WA | - |
testcase_25 | AC | 135 ms
54,140 KB |
testcase_26 | WA | - |
testcase_27 | AC | 134 ms
54,636 KB |
testcase_28 | WA | - |
testcase_29 | AC | 136 ms
54,052 KB |
testcase_30 | AC | 128 ms
54,088 KB |
testcase_31 | AC | 131 ms
53,936 KB |
testcase_32 | AC | 129 ms
54,316 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int R = scan.nextInt(); int K = scan.nextInt(); int H = scan.nextInt(); int W = scan.nextInt(); int[][]c = new int[H][W]; for(int i = 0; i < H; i++) { String s = scan.next(); for(int j = 0; j < W; j++) { if(s.charAt(j) == '#') { c[i][j] = 1; } } } scan.close(); if(R == 0) { disp(c, H, W, K); }else if(R == 180) { int[][] new_c = new int[H][W]; for(int i = H - 1; i >= 0; i--) { for(int j = W - 1; j >= 0; j--) { new_c[i][j] = c[i][j]; } } disp(new_c, H, W, K); }else if(R == 90) { int[][] new_c = new int[W][H]; for(int i = 0; i < W; i++) { for(int j = 0; j < H; j++) { new_c[i][j] = c[j][i]; } } disp(new_c, W, H, K); }else { int[][] new_c = new int[W][H]; for(int i = W - 1; i >= 0; i--) { for(int j = H - 1; j >= 0; j--) { new_c[i][j] = c[j][i]; } } disp(new_c, W, H, K); } } static void disp(int[][] cell, int r, int c, int t) { for(int i = 0; i < r; i++) { StringBuilder sb = new StringBuilder(); for(int j = 0; j < c; j++) { char ch = '.'; if(cell[i][j] == 1) { ch = '#'; } for(int k = 0; k < t; k++) { sb.append(ch); } } for(int k = 0; k < t; k++) { System.out.println(sb.toString()); } } } }