結果

問題 No.701 ひとりしりとり
ユーザー yoneoka1985yoneoka1985
提出日時 2018-10-24 21:20:47
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,807 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 80,936 KB
実行使用メモリ 56,028 KB
最終ジャッジ日時 2024-04-29 21:31:26
合計ジャッジ時間 8,023 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
46,520 KB
testcase_01 AC 132 ms
41,040 KB
testcase_02 AC 132 ms
41,284 KB
testcase_03 AC 120 ms
40,088 KB
testcase_04 AC 134 ms
41,192 KB
testcase_05 AC 132 ms
41,552 KB
testcase_06 AC 120 ms
40,228 KB
testcase_07 AC 136 ms
41,456 KB
testcase_08 AC 136 ms
41,380 KB
testcase_09 AC 178 ms
42,312 KB
testcase_10 AC 465 ms
47,524 KB
testcase_11 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();

        StringBuilder sb = new StringBuilder();
                
        List answers = new ArrayList<String>();
        String last = "a";
        for(int i=0;i<n-1;i++){
            while(true){
                String s = randomWord(last);
                if(answers.contains(s)){continue;}
                answers.add(s);
                sb.append(s);
                sb.append("\r\n");
                last = s.substring(s.length()-1);
                break;
            }
        }
        while(true){
            String s = randomWord(last);
            if(answers.contains(s)){continue;}
            s = s.substring(0,s.length()-1) + "n";
            sb.append(s);
            sb.append("\r\n");
            break;
        }
        System.out.println(sb.toString());
    }
    
    /**
     * s で始まる20文字以下の単語を返す
     */
    public static String randomWord(String s){
        Random rand = new Random();
        StringBuffer sb = new StringBuffer(s);
        
        int length = rand.nextInt(20);
        if(length==0) return s;
        for(int i=0;i<length - 1;i++){
            sb.append(randomAlphabet());
        }
        sb.append(randomAlphabetExceptN());
        return sb.toString();
    }
    
    public static char randomAlphabet(){
        Random rand = new Random();
        return (char)(97 + rand.nextInt(26));
    }
    public static char randomAlphabetExceptN(){
        Random rand = new Random();
        int n = rand.nextInt(25);
        if( n < 13){
            return (char)(97 + n);
        }else{
            return (char)(98 + n);
        }
    }
    
    
    
}
0