結果

問題 No.701 ひとりしりとり
ユーザー nanaenanae
提出日時 2018-07-20 23:35:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 898 ms / 2,000 ms
コード長 749 bytes
コンパイル時間 3,125 ms
コンパイル使用メモリ 76,288 KB
実行使用メモリ 56,364 KB
最終ジャッジ日時 2024-12-26 04:33:09
合計ジャッジ時間 7,851 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
41,688 KB
testcase_01 AC 236 ms
42,900 KB
testcase_02 AC 247 ms
43,220 KB
testcase_03 AC 231 ms
42,996 KB
testcase_04 AC 239 ms
43,104 KB
testcase_05 AC 237 ms
43,220 KB
testcase_06 AC 229 ms
42,868 KB
testcase_07 AC 225 ms
43,412 KB
testcase_08 AC 238 ms
43,232 KB
testcase_09 AC 295 ms
43,652 KB
testcase_10 AC 443 ms
52,336 KB
testcase_11 AC 898 ms
56,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        char[] p = "abcdefghijklmopqrstuvwxyz".toCharArray();

        char last = 'a';

        for (int i = 0; i < n - 1; i++) {
            char[] mid = new char[18];
            for (int j = 0; j < 18; j++) {
                if ((i & (1<<j)) == 0) {
                    mid[j] = 'a';
                }
                else {
                    mid[j] = 'b';
                }
            }

            System.out.println(p[i%p.length] + String.valueOf(mid) + p[(i+1)%p.length]);
            last = p[(i+1)%p.length];
        }

        System.out.println(last + "n");
    }
}
0