結果

問題 No.304 鍵(1)
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-03-01 10:36:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 2,799 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 60,472 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-17 02:07:56
合計ジャッジ時間 4,662 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
58,388 KB
testcase_01 AC 214 ms
58,548 KB
testcase_02 AC 421 ms
60,472 KB
testcase_03 AC 212 ms
59,076 KB
testcase_04 AC 321 ms
60,324 KB
testcase_05 AC 204 ms
57,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        for (int i = 0; i < 1000; i++) {
            String password = String.format("%03d", i);
            System.out.println(password);
            System.out.flush();
            
            String answer = stdin.nextLine();
            if (answer.equals("unlocked")) {
                System.exit(0);
            }
        }
    }
}
0