結果

問題 No.701 ひとりしりとり
ユーザー Pump0129Pump0129
提出日時 2018-11-28 17:25:42
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,306 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 79,276 KB
実行使用メモリ 71,984 KB
最終ジャッジ日時 2024-06-26 22:58:37
合計ジャッジ時間 8,347 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
61,184 KB
testcase_01 AC 123 ms
54,020 KB
testcase_02 AC 126 ms
53,992 KB
testcase_03 AC 120 ms
53,064 KB
testcase_04 AC 129 ms
54,100 KB
testcase_05 AC 128 ms
56,040 KB
testcase_06 AC 132 ms
53,776 KB
testcase_07 AC 118 ms
52,764 KB
testcase_08 AC 133 ms
54,100 KB
testcase_09 AC 207 ms
54,600 KB
testcase_10 AC 650 ms
64,984 KB
testcase_11 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no701;

import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int num_cnt = scan.nextInt();
        String prev_str = "aaa";

        List<String> stringList = new ArrayList<>();

        for (int i = 0; i < num_cnt - 1; i++) {
            while (true) {
                String moji = createRandomString(prev_str.charAt(0), prev_str.charAt(prev_str.length() - 1));
                if (!stringList.contains(moji)) {
                    stringList.add(moji);
                    prev_str = moji;
                    System.out.println(moji);
                    break;
                }
            }
        }

        System.out.println(createRandomString(prev_str.charAt(0), 'n'));
    }

    public static String createRandomString(Character begin, Character end) {
        Random rand = new Random();
        StringBuilder sb = new StringBuilder();

        sb.append(begin);

        for (int i = 0; i < 18; i++) {
            sb.append(Character.toChars(rand.nextInt(26) + 97 ));
        }

        sb.append(end);

        return sb.toString();
    }
}
0