結果

問題 No.1764 Square
ユーザー ripityripity
提出日時 2021-12-12 20:32:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 2,513 ms
コンパイル使用メモリ 76,488 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-07-21 08:24:59
合計ジャッジ時間 4,336 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,128 KB
testcase_01 AC 136 ms
41,076 KB
testcase_02 AC 134 ms
41,292 KB
testcase_03 AC 138 ms
41,148 KB
testcase_04 AC 118 ms
39,724 KB
testcase_05 AC 121 ms
40,320 KB
testcase_06 AC 138 ms
41,328 KB
testcase_07 AC 139 ms
41,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int K = sc.nextInt();
        String[] q = {"AE","B","C","D"};
        for( int i = 0; i < K; i++ ) {
            String h = q[i%4].substring(0,1);
            String t = q[i%4].substring(1,2);
            q[i%4] = t;
            q[(i+1)%4] += h;
        }
        
        for( String s : q ) {
            System.out.println(s);
        }
        
    }
    
}
0