結果

問題 No.565 回転拡大
ユーザー GrenacheGrenache
提出日時 2017-09-08 22:37:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 1,945 bytes
コンパイル時間 4,021 ms
コンパイル使用メモリ 78,328 KB
実行使用メモリ 41,768 KB
最終ジャッジ日時 2024-11-07 06:23:27
合計ジャッジ時間 9,680 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
41,272 KB
testcase_01 AC 137 ms
41,316 KB
testcase_02 AC 140 ms
41,328 KB
testcase_03 AC 135 ms
41,284 KB
testcase_04 AC 139 ms
41,340 KB
testcase_05 AC 134 ms
41,448 KB
testcase_06 AC 139 ms
41,216 KB
testcase_07 AC 129 ms
40,576 KB
testcase_08 AC 126 ms
40,312 KB
testcase_09 AC 134 ms
41,456 KB
testcase_10 AC 131 ms
41,384 KB
testcase_11 AC 135 ms
41,144 KB
testcase_12 AC 136 ms
41,596 KB
testcase_13 AC 120 ms
40,372 KB
testcase_14 AC 130 ms
41,128 KB
testcase_15 AC 140 ms
41,576 KB
testcase_16 AC 134 ms
41,420 KB
testcase_17 AC 131 ms
41,260 KB
testcase_18 AC 128 ms
40,248 KB
testcase_19 AC 137 ms
41,656 KB
testcase_20 AC 121 ms
40,348 KB
testcase_21 AC 130 ms
41,456 KB
testcase_22 AC 135 ms
41,768 KB
testcase_23 AC 132 ms
41,028 KB
testcase_24 AC 137 ms
41,488 KB
testcase_25 AC 139 ms
41,380 KB
testcase_26 AC 121 ms
40,140 KB
testcase_27 AC 139 ms
41,264 KB
testcase_28 AC 140 ms
41,612 KB
testcase_29 AC 140 ms
41,356 KB
testcase_30 AC 132 ms
41,144 KB
testcase_31 AC 131 ms
41,164 KB
testcase_32 AC 131 ms
41,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder565 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int r = sc.nextInt();
		int k = sc.nextInt();
		int h = sc.nextInt();
		int w = sc.nextInt();

		char[][] c = new char[h][];
		for (int i = 0; i < h; i++) {
			c[i] = sc.next().toCharArray();
		}

		char[][] ret = null;
		if (r == 0) {
			ret = new char[h * k][w * k];
			for (int i = 0; i < h; i++) {
				for (int ik = 0; ik < k; ik++) {
					for (int j = 0; j < w; j++) {
						for (int jk = 0; jk < k; jk++) {
							ret[i * k + ik][j * k + jk] = c[i][j];
						}
					}
				}
			}
		} else if (r == 180) {
			ret = new char[h * k][w * k];
			for (int i = 0; i < h; i++) {
				for (int ik = 0; ik < k; ik++) {
					for (int j = 0; j < w; j++) {
						for (int jk = 0; jk < k; jk++) {
							ret[i * k + ik][j * k + jk] = c[h - 1 - i][w - 1 - j];
						}
					}
				}
			}
		} else if (r == 90) {
			ret = new char[w * k][h * k];
			for (int j = 0; j < w; j++) {
				for (int jk = 0; jk < k; jk++) {
					for (int i = 0; i < h; i++) {
						for (int ik = 0; ik < k; ik++) {
							ret[j * k + jk][i * k + ik] = c[h - 1 - i][j];
						}
					}
				}
			}
		} else {
			ret = new char[w * k][h * k];
			for (int j = 0; j < w; j++) {
				for (int jk = 0; jk < k; jk++) {
					for (int i = 0; i < h; i++) {
						for (int ik = 0; ik < k; ik++) {
							ret[j * k + jk][i * k + ik] = c[i][w - 1 - j];
						}
					}
				}
			}
		}

		for (int i = 0; i < ret.length; i++) {
			for (int j = 0; j < ret[0].length; j++) {
				pr.print(ret[i][j]);
			}
			pr.println();
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0