結果

問題 No.304 鍵(1)
ユーザー ぴろず
提出日時 2015-11-27 22:32:02
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2 WA * 4
権限があれば一括ダウンロードができます

ソースコード

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