結果

問題 No.304 鍵(1)
ユーザー kou6839
提出日時 2015-11-28 01:58:00
言語 Java
(openjdk 23)
結果
AC  
実行時間 422 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 65,828 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-16 21:53:08
合計ジャッジ時間 4,396 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

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