結果

問題 No.304 鍵(1)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 19:42:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 2,186 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 74,936 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-17 00:37:04
合計ジャッジ時間 4,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
69,480 KB
testcase_01 AC 218 ms
70,768 KB
testcase_02 AC 405 ms
74,936 KB
testcase_03 AC 201 ms
70,448 KB
testcase_04 AC 313 ms
71,492 KB
testcase_05 AC 198 ms
70,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int i=0;
        while(true){
			System.out.println(String.format("%03d",i));
			if( "unlocked".equals(sc.next()) ){
			    break;
			}
			i++;
        }
    }
}
0