結果

問題 No.304 鍵(1)
ユーザー ぴろずぴろず
提出日時 2015-11-27 22:32:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 272 bytes
コンパイル時間 2,835 ms
コンパイル使用メモリ 75,280 KB
実行使用メモリ 71,016 KB
平均クエリ数 83.50
最終ジャッジ日時 2024-07-16 06:34:07
合計ジャッジ時間 5,749 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

package no303;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		for(int i=0;i<100;i++) {
			System.out.printf("%03d\n",i);
			if (sc.next().equals("unlocked")) {
				return;
			}
		}
	}

}
0