結果

問題 No.565 回転拡大
ユーザー takeya_okinotakeya_okino
提出日時 2017-09-18 23:47:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 1,389 bytes
コンパイル時間 3,646 ms
コンパイル使用メモリ 85,164 KB
実行使用メモリ 42,404 KB
最終ジャッジ日時 2024-11-08 02:39:16
合計ジャッジ時間 8,357 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
42,404 KB
testcase_01 AC 150 ms
42,360 KB
testcase_02 AC 149 ms
41,672 KB
testcase_03 AC 137 ms
41,684 KB
testcase_04 AC 146 ms
41,644 KB
testcase_05 AC 137 ms
41,552 KB
testcase_06 AC 142 ms
41,464 KB
testcase_07 AC 146 ms
41,776 KB
testcase_08 AC 144 ms
41,696 KB
testcase_09 AC 135 ms
41,244 KB
testcase_10 AC 136 ms
41,152 KB
testcase_11 AC 141 ms
41,416 KB
testcase_12 AC 147 ms
41,320 KB
testcase_13 AC 138 ms
41,508 KB
testcase_14 AC 135 ms
41,588 KB
testcase_15 AC 147 ms
41,720 KB
testcase_16 AC 144 ms
41,364 KB
testcase_17 AC 141 ms
41,544 KB
testcase_18 AC 142 ms
41,584 KB
testcase_19 AC 151 ms
42,068 KB
testcase_20 AC 137 ms
41,268 KB
testcase_21 AC 138 ms
41,564 KB
testcase_22 AC 143 ms
41,680 KB
testcase_23 AC 133 ms
41,328 KB
testcase_24 AC 148 ms
41,920 KB
testcase_25 AC 148 ms
41,932 KB
testcase_26 AC 130 ms
40,524 KB
testcase_27 AC 146 ms
41,512 KB
testcase_28 AC 144 ms
41,424 KB
testcase_29 AC 148 ms
41,852 KB
testcase_30 AC 138 ms
41,420 KB
testcase_31 AC 135 ms
41,668 KB
testcase_32 AC 137 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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[][] fig = new char[h][w];
    for(int i = 0; i < h; i++) {
      String s = sc.next();
      for(int j = 0; j < w; j++) {
        fig[i][j] = s.charAt(j);
      }
    }
    char[][] rot;
    int row = 0;
    int col = 0;
    if(r == 0) {
      rot = fig;
      row = k * h;
      col = k * w;
    } else if(r == 90) {
      rot = new char[w][h];
      row = k * w;
      col = k * h;
      for(int i = 0; i < w; i++) {
        for(int j = 0; j < h; j++) {
          rot[i][j] = fig[h - 1 - j][i];
        }
      }
    } else if(r == 180) {
      rot = new char[h][w];
      row = k * h;
      col = k * w;
      for(int i = 0; i < h; i++) {
        for(int j = 0; j < w; j++) {
          rot[i][j] = fig[h - 1 - i][w - 1 - j];
        }
      }
    } else {
      rot = new char[w][h];
      row = k * w;
      col = k * h;
      for(int i = 0; i < w; i++) {
        for(int j = 0; j < h; j++) {
          rot[i][j] = fig[j][w - 1 - i];
        }
      }
    }
    for(int i = 0; i < row; i++) {
      String s = "";
      for(int j = 0; j < col; j++) {
        s += String.valueOf(rot[i / k][j / k]);
      }
      System.out.println(s);
    }
  }
}
0