結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
46,784 KB
testcase_01 AC 117 ms
40,128 KB
testcase_02 WA -
testcase_03 AC 122 ms
39,968 KB
testcase_04 AC 131 ms
41,412 KB
testcase_05 AC 119 ms
41,064 KB
testcase_06 AC 132 ms
41,396 KB
testcase_07 AC 119 ms
40,100 KB
testcase_08 AC 132 ms
41,260 KB
testcase_09 AC 174 ms
42,268 KB
testcase_10 AC 439 ms
47,708 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