結果

問題 No.304 鍵(1)
ユーザー kou6839kou6839
提出日時 2015-11-28 01:57:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 5,404 ms
コンパイル使用メモリ 71,504 KB
実行使用メモリ 55,312 KB
平均クエリ数 1.00
最終ジャッジ日時 2023-09-23 06:52:30
合計ジャッジ時間 4,796 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.*;
public class Main {
	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		
		String ans = "";
		int count = 0;
		while(ans.equals("unlocked")){
			System.out.println(String.format("%1$03d", count));
			count++;
			ans=sc.next();
		}
		
		
	}
}
0