結果
問題 | No.305 鍵(2) |
ユーザー | spacia |
提出日時 | 2016-01-19 23:17:44 |
言語 | Java21 (openjdk 21) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 650 bytes |
コンパイル時間 | 2,279 ms |
コンパイル使用メモリ | 76,352 KB |
実行使用メモリ | 69,380 KB |
平均クエリ数 | 1.00 |
最終ジャッジ日時 | 2024-07-16 08:30:13 |
合計ジャッジ時間 | 6,335 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
import java.io.*; import java.util.*; import java.math.*; class Main { public static void out (Object o) { System.out.println(o); } public static void main (String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int len = 10; char[] c = "**********".toCharArray(); char[] nums = {'0','1','2','3','4','5','6','7','8','9'}; for (int i = 0; i < len; i++) { for (int j = 0; j < len; j++) { c[i] = nums[j]; out(String.valueOf(c)); System.out.flush(); String[] line = br.readLine().split(" "); if (line[0].equals(i + 1 + "")) break; } } } }