結果

問題 No.305 鍵(2)
ユーザー YamaKasaYamaKasa
提出日時 2018-09-10 22:17:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 1,943 ms
コンパイル使用メモリ 75,184 KB
実行使用メモリ 65,800 KB
平均クエリ数 44.08
最終ジャッジ日時 2024-07-17 01:53:14
合計ジャッジ時間 5,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
65,428 KB
testcase_01 AC 164 ms
65,432 KB
testcase_02 AC 146 ms
65,232 KB
testcase_03 AC 163 ms
65,056 KB
testcase_04 AC 160 ms
64,788 KB
testcase_05 AC 180 ms
65,800 KB
testcase_06 AC 140 ms
64,788 KB
testcase_07 AC 167 ms
64,684 KB
testcase_08 AC 171 ms
64,816 KB
testcase_09 AC 171 ms
65,076 KB
testcase_10 AC 168 ms
65,340 KB
testcase_11 AC 166 ms
65,420 KB
testcase_12 AC 158 ms
64,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		StringBuilder key = new StringBuilder("0000000000");
		System.out.println(key.toString());
		int X = scan.nextInt();
		String t = scan.next();
		if(t.equals("unlocked")) {
			System.exit(0);
		}
		for(int i = 0; i < 10; i++) {
			String s0 = key.toString();
			for(int j = 1; j < 10; j++) {
				String s = key.replace(i, i + 1, Integer.toString(j)).toString();
				System.out.println(s);
				int k = scan.nextInt();
				t = scan.next();
				if(t.equals("unlocked")) {
					System.exit(0);
				}
				if(k > X) {
					key = new StringBuilder(s);
					X = k;
					break;
				}else if(k < X) {
					key = new StringBuilder(s0);
					break;
				}
			}
		}
		scan.close();
	}
}
0