結果
問題 | No.701 ひとりしりとり |
ユーザー | yoneoka1985 |
提出日時 | 2018-10-24 21:52:10 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 587 ms / 2,000 ms |
コード長 | 1,985 bytes |
コンパイル時間 | 2,343 ms |
コンパイル使用メモリ | 82,588 KB |
実行使用メモリ | 64,416 KB |
最終ジャッジ日時 | 2024-04-29 21:31:44 |
合計ジャッジ時間 | 5,282 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
40,820 KB |
testcase_01 | AC | 124 ms
40,256 KB |
testcase_02 | AC | 115 ms
40,304 KB |
testcase_03 | AC | 136 ms
41,272 KB |
testcase_04 | AC | 120 ms
39,988 KB |
testcase_05 | AC | 133 ms
41,440 KB |
testcase_06 | AC | 135 ms
41,176 KB |
testcase_07 | AC | 123 ms
40,156 KB |
testcase_08 | AC | 134 ms
41,576 KB |
testcase_09 | AC | 148 ms
41,496 KB |
testcase_10 | AC | 222 ms
48,268 KB |
testcase_11 | AC | 587 ms
64,416 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); long start = System.currentTimeMillis(); StringBuilder sb = new StringBuilder(); Map answers = new HashMap<String,String>(); char last = 'a'; for(int i=0;i<n-1;i++){ while(true){ String s = randomWord(last); if(answers.containsKey(s)){continue;} answers.put(s,null); sb.append(s); sb.append("\r\n"); last = s.charAt(s.length()-1); break; } } while(true){ String s = randomWord(last); if(answers.containsKey(s)){continue;} s = s.substring(0,s.length()-1) + "n"; sb.append(s); sb.append("\r\n"); break; } System.out.println(sb.toString()); long end = System.currentTimeMillis(); // System.out.println(end - start); } /** * s で始まる20文字以下の単語を返す */ public static String randomWord(char c){ Random rand = new Random(); StringBuffer sb = new StringBuffer(); sb.append(c); int length = rand.nextInt(20); if(length==0) return String.valueOf(c); 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); } } }