結果
問題 | No.305 鍵(2) |
ユーザー | YamaKasa |
提出日時 | 2018-09-10 22:05:56 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 685 bytes |
コンパイル時間 | 2,377 ms |
コンパイル使用メモリ | 74,588 KB |
実行使用メモリ | 71,180 KB |
平均クエリ数 | 2.85 |
最終ジャッジ日時 | 2024-07-16 16:07:06 |
合計ジャッジ時間 | 8,352 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 166 ms
70,864 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
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++) { 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(); if(k > X) { key = new StringBuilder(s); break; }else if(k < X) { break; } } } scan.close(); System.out.println(key.toString()); } }