結果

問題 No.304 鍵(1)
ユーザー mitsuomitsuo
提出日時 2016-05-04 22:07:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 1,932 ms
コンパイル使用メモリ 75,612 KB
実行使用メモリ 75,044 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-16 23:40:16
合計ジャッジ時間 4,381 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 212 ms
71,320 KB
testcase_01 AC 244 ms
72,156 KB
testcase_02 AC 389 ms
74,376 KB
testcase_03 AC 243 ms
75,044 KB
testcase_04 AC 329 ms
72,264 KB
testcase_05 AC 233 ms
72,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {

	public static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		new Main().solve();
	}

	public void solve() {
		List<String> candidate = new ArrayList<String>();
		for (int j = 0; j < 1000; j++) {
			candidate.add(String.format("%3d", j).replace(" ", "0"));
		}
		for (String c : candidate) {
			send(c);
			String input = get();
			if (input.equals("unlocked")) {
				break;
			}
		}

	}

	protected void send(String s) {
		System.out.println(s);
		System.out.flush();

	}

	protected String get() {
		return sc.nextLine();
	}

}
0