結果
問題 | No.701 ひとりしりとり |
ユーザー | ciel |
提出日時 | 2018-06-15 22:50:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 713 bytes |
コンパイル時間 | 3,861 ms |
コンパイル使用メモリ | 77,556 KB |
実行使用メモリ | 73,012 KB |
最終ジャッジ日時 | 2024-06-30 15:12:04 |
合計ジャッジ時間 | 7,464 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 149 ms
42,524 KB |
testcase_01 | AC | 134 ms
41,996 KB |
testcase_02 | AC | 154 ms
42,400 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 152 ms
42,644 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
import java.util.Random; import java.util.Scanner; public class main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String str = "abcdefghijklmnopqrstuvwxyz"; Random r = new Random(); String l = ""; for (int i=0; i<n; i++) { StringBuffer sb = new StringBuffer(); for (int j=0; j<10; j++) { int val = r.nextInt(str.length()); sb.append(str.charAt(val)); } if (sb.substring(sb.length()-1, sb.length()) == "n") { sb = sb.delete(sb.length()-1, sb.length()); } if (i==n-1) System.out.println(l + sb + "n"); else { System.out.println(l + sb); l = sb.substring(sb.length()-1, sb.length()); } } } }