結果

問題 No.701 ひとりしりとり
ユーザー nanaenanae
提出日時 2018-07-20 23:35:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 781 ms / 2,000 ms
コード長 749 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 77,144 KB
実行使用メモリ 56,424 KB
最終ジャッジ日時 2024-06-07 19:43:43
合計ジャッジ時間 6,486 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,400 KB
testcase_01 AC 172 ms
43,000 KB
testcase_02 AC 184 ms
42,904 KB
testcase_03 AC 190 ms
43,056 KB
testcase_04 AC 188 ms
43,228 KB
testcase_05 AC 198 ms
43,156 KB
testcase_06 AC 193 ms
43,192 KB
testcase_07 AC 197 ms
43,364 KB
testcase_08 AC 195 ms
43,084 KB
testcase_09 AC 249 ms
43,636 KB
testcase_10 AC 368 ms
49,024 KB
testcase_11 AC 781 ms
56,424 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