結果

問題 No.304 鍵(1)
ユーザー ぴろずぴろず
提出日時 2015-11-27 22:32:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 272 bytes
コンパイル時間 5,172 ms
コンパイル使用メモリ 70,668 KB
実行使用メモリ 72,460 KB
平均クエリ数 83.50
最終ジャッジ日時 2023-09-23 06:40:12
合計ジャッジ時間 7,886 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
71,496 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 200 ms
72,420 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