結果
問題 | No.701 ひとりしりとり |
ユーザー | yoneoka1985 |
提出日時 | 2018-10-24 21:17:49 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,659 bytes |
コンパイル時間 | 3,312 ms |
コンパイル使用メモリ | 86,832 KB |
実行使用メモリ | 60,516 KB |
最終ジャッジ日時 | 2024-04-29 21:30:52 |
合計ジャッジ時間 | 9,800 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
46,776 KB |
testcase_01 | AC | 126 ms
41,116 KB |
testcase_02 | AC | 129 ms
41,364 KB |
testcase_03 | AC | 117 ms
39,992 KB |
testcase_04 | AC | 135 ms
40,960 KB |
testcase_05 | AC | 117 ms
40,012 KB |
testcase_06 | AC | 130 ms
40,360 KB |
testcase_07 | AC | 138 ms
41,376 KB |
testcase_08 | AC | 138 ms
41,480 KB |
testcase_09 | AC | 190 ms
41,648 KB |
testcase_10 | AC | 636 ms
52,604 KB |
testcase_11 | TLE | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); 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); System.out.println(s); 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"; System.out.println(s); break; } } /** * 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); } } }