結果

問題 No.565 回転拡大
ユーザー fal_rndfal_rnd
提出日時 2017-09-21 19:22:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 1,038 bytes
コンパイル時間 4,396 ms
コンパイル使用メモリ 82,680 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-11-08 19:33:39
合計ジャッジ時間 9,810 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,220 KB
testcase_01 AC 138 ms
41,388 KB
testcase_02 AC 140 ms
41,580 KB
testcase_03 AC 133 ms
41,268 KB
testcase_04 AC 137 ms
41,308 KB
testcase_05 AC 133 ms
41,384 KB
testcase_06 AC 132 ms
41,128 KB
testcase_07 AC 139 ms
41,136 KB
testcase_08 AC 139 ms
41,288 KB
testcase_09 AC 137 ms
41,120 KB
testcase_10 AC 136 ms
41,540 KB
testcase_11 AC 141 ms
41,296 KB
testcase_12 AC 127 ms
40,060 KB
testcase_13 AC 132 ms
41,044 KB
testcase_14 AC 135 ms
41,352 KB
testcase_15 AC 141 ms
41,240 KB
testcase_16 AC 141 ms
41,228 KB
testcase_17 AC 140 ms
41,196 KB
testcase_18 AC 138 ms
41,408 KB
testcase_19 AC 143 ms
41,400 KB
testcase_20 AC 140 ms
41,088 KB
testcase_21 AC 137 ms
41,072 KB
testcase_22 AC 137 ms
41,064 KB
testcase_23 AC 135 ms
41,180 KB
testcase_24 AC 139 ms
41,336 KB
testcase_25 AC 140 ms
41,252 KB
testcase_26 AC 138 ms
41,228 KB
testcase_27 AC 144 ms
41,188 KB
testcase_28 AC 139 ms
41,260 KB
testcase_29 AC 141 ms
41,176 KB
testcase_30 AC 141 ms
41,464 KB
testcase_31 AC 119 ms
40,088 KB
testcase_32 AC 142 ms
41,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
import java.util.stream.IntStream;

public class Solution{
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n) {return REPS(n).map(i->getInt());}
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}

	public static void main(String[]$){
		int r=getInt(),k=getInt(),h=getInt(),w=getInt();
		char[][]in=new char[h*k][w*k];
		{
			char[][]buf=REPS(h).mapToObj(o->s.next().toCharArray()).toArray(char[][]::new);
			for(int i=0;i<h*k;++i) {
				for(int j=0;j<w*k;++j) {
					in[i][j]=buf[i/k][j/k];
				}
			}
		}
		for(int i=0;i<r;i+=90)
			in=turn(in);
		Arrays.stream(in).map(String::valueOf).forEach(System.out::println);
	}
	static char[][] turn(final char[][]c){
		final int h=c.length,w=c[0].length;
		char[][] r=new char[w][h];
		for(int i=0;i<w;++i) {
			for(int j=0;j<h;++j) {
				r[i][j]=c[h-1-j][i];
			}
		}
		return r;
	}
}
0