結果

問題 No.701 ひとりしりとり
ユーザー yoneoka1985yoneoka1985
提出日時 2018-10-24 21:20:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,807 bytes
コンパイル時間 2,510 ms
コンパイル使用メモリ 81,140 KB
実行使用メモリ 68,604 KB
最終ジャッジ日時 2024-11-19 05:36:13
合計ジャッジ時間 8,629 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
60,700 KB
testcase_01 WA -
testcase_02 AC 143 ms
53,992 KB
testcase_03 AC 133 ms
52,988 KB
testcase_04 AC 141 ms
53,932 KB
testcase_05 AC 142 ms
54,120 KB
testcase_06 AC 143 ms
54,172 KB
testcase_07 AC 143 ms
54,112 KB
testcase_08 AC 143 ms
54,088 KB
testcase_09 AC 181 ms
54,172 KB
testcase_10 AC 484 ms
59,640 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