結果

問題 No.304 鍵(1)
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 15:11:44
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 258 bytes
コンパイル時間 3,512 ms
コンパイル使用メモリ 72,888 KB
実行使用メモリ 76,900 KB
平均クエリ数 310.00
最終ジャッジ日時 2023-09-23 11:26:01
合計ジャッジ時間 6,064 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 430 ms
76,900 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		for(int i = 0; i < 1000; i++){
			System.out.printf("%03d\r\n",i);
			if(sc.next().equals("unlocked"));
		}

		sc.close();
	}
}
0