結果

問題 No.304 鍵(1)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-02 03:35:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 3,609 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 59,948 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-16 23:54:25
合計ジャッジ時間 5,158 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
56,516 KB
testcase_01 AC 173 ms
58,148 KB
testcase_02 AC 371 ms
59,948 KB
testcase_03 AC 189 ms
57,864 KB
testcase_04 AC 284 ms
59,244 KB
testcase_05 AC 174 ms
58,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Exercise46{
  public static void main (String[] args) throws IOException{

    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));

    for (int a = 0; a < 1000; a++){
      System.out.printf("%03d\n", a);
      System.out.flush();

      String result = new String(in.readLine());

      if (result.equals("unlocked")){
        break;
      }
    }
  }
}
0