結果

問題 No.304 鍵(1)
ユーザー samplelpmassamplelpmas
提出日時 2016-12-22 09:05:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 61,480 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-17 00:43:15
合計ジャッジ時間 5,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
57,424 KB
testcase_01 AC 218 ms
57,784 KB
testcase_02 AC 507 ms
61,480 KB
testcase_03 AC 236 ms
57,720 KB
testcase_04 AC 395 ms
59,948 KB
testcase_05 AC 229 ms
57,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        for (int i = 0; i < 1000; i++) {

            System.out.printf("%03d\n", i);

            if (sc.next().equals("unlocked")) {
                break;
            }

        }

    }

}
0