結果

問題 No.565 回転拡大
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-17 20:20:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 1,231 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 77,192 KB
実行使用メモリ 55,252 KB
最終ジャッジ日時 2024-06-24 12:19:13
合計ジャッジ時間 9,392 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
55,252 KB
testcase_01 AC 204 ms
54,300 KB
testcase_02 AC 187 ms
54,360 KB
testcase_03 AC 141 ms
54,040 KB
testcase_04 AC 188 ms
54,316 KB
testcase_05 AC 137 ms
53,936 KB
testcase_06 AC 184 ms
54,464 KB
testcase_07 AC 182 ms
54,164 KB
testcase_08 AC 192 ms
54,032 KB
testcase_09 AC 138 ms
54,232 KB
testcase_10 AC 142 ms
54,160 KB
testcase_11 AC 168 ms
54,208 KB
testcase_12 AC 192 ms
54,104 KB
testcase_13 AC 147 ms
54,176 KB
testcase_14 AC 143 ms
53,764 KB
testcase_15 AC 174 ms
54,192 KB
testcase_16 AC 154 ms
54,236 KB
testcase_17 AC 140 ms
54,236 KB
testcase_18 AC 169 ms
54,184 KB
testcase_19 AC 192 ms
54,208 KB
testcase_20 AC 141 ms
53,968 KB
testcase_21 AC 148 ms
54,264 KB
testcase_22 AC 185 ms
54,388 KB
testcase_23 AC 136 ms
54,132 KB
testcase_24 AC 195 ms
54,780 KB
testcase_25 AC 188 ms
54,748 KB
testcase_26 AC 154 ms
54,156 KB
testcase_27 AC 183 ms
54,368 KB
testcase_28 AC 194 ms
54,096 KB
testcase_29 AC 157 ms
54,536 KB
testcase_30 AC 138 ms
53,932 KB
testcase_31 AC 139 ms
54,112 KB
testcase_32 AC 135 ms
53,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		//拡大前の画像ar1を作る
		int r = sc.nextInt();
		int k = sc.nextInt();
		int h = sc.nextInt();
		int w = sc.nextInt();
		char[][] ar1 = new char[h][w];
		for (int i=0; i<h; i++) {
				ar1[i] = sc.next().toCharArray();
		}
		
		//拡大後の画像ar2を作る
		int H = h*k;
		int W = w*k;
		char[][] ar2 = new char[H][W];
		for (int i=0; i<H; i++) {
			for (int j=0; j<W; j++) {
				ar2[i][j] = ar1[i/k][j/k];
			}
		}

		//ar2を指定分回転させて表示
		if (r==0) {
			for (int i=0; i<H; i++) {
				for (int j=0; j<W; j++) {
					System.out.print(ar2[i][j]);
				}
				System.out.println();
			}
		}
		else if (r==90) {
			for (int j=0; j<W; j++) {
				for (int i=H-1; i>=0; i--) {
					System.out.print(ar2[i][j]);
				}
				System.out.println();
			}
		}
		else if (r==180) {
			for (int i=H-1; i>=0; i--) {
				for (int j=W-1; j>=0; j--) {
					System.out.print(ar2[i][j]);
				}
				System.out.println();
			}
		}
		else if (r==270) {
			for (int j=W-1; j>=0; j--) {
				for (int i=0; i<H; i++) {
					System.out.print(ar2[i][j]);
				}
				System.out.println();
			}
		}
	}
}
0