結果

問題 No.304 鍵(1)
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-11-30 13:57:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 4,256 ms
コンパイル使用メモリ 76,688 KB
実行使用メモリ 74,448 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-16 21:56:43
合計ジャッジ時間 5,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
71,232 KB
testcase_01 AC 212 ms
71,884 KB
testcase_02 AC 358 ms
74,448 KB
testcase_03 AC 201 ms
71,672 KB
testcase_04 AC 303 ms
72,244 KB
testcase_05 AC 204 ms
71,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_304 {
public static void main(String[] args) {
	String[] Num = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"};
	Scanner sc = new Scanner(System.in);
	String s;
	flag: for(int i = 0; i < Num.length; i++){
				for(int j = 0; j < Num.length; j++){
					for(int k = 0; k < Num.length; k++){
						System.out.println(Num[i] + Num[j] + Num[k]);
						if((s = sc.nextLine()).equals("unlocked")){
					break flag;
				}
			}
		}
	}
}
}
0