結果
問題 | No.304 鍵(1) |
ユーザー | spacia |
提出日時 | 2016-01-04 11:53:04 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 490 bytes |
コンパイル時間 | 2,246 ms |
コンパイル使用メモリ | 75,952 KB |
実行使用メモリ | 15,188 KB |
最終ジャッジ日時 | 2024-07-16 22:50:04 |
合計ジャッジ時間 | 8,733 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
ソースコード
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)); for (int i = 0; i < 1000; i++) { String s = i + ""; while (s.length() < 3) s = "0" + s; out(s); String t; while ((t = br.readLine()) == null) {} if (t.equals("locked")) break; } } }