結果
問題 | No.2768 Password Crack |
ユーザー | ks2m |
提出日時 | 2024-05-31 22:20:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 679 bytes |
コンパイル時間 | 3,616 ms |
コンパイル使用メモリ | 77,108 KB |
実行使用メモリ | 77,736 KB |
平均クエリ数 | 1785.17 |
最終ジャッジ日時 | 2024-12-20 23:54:52 |
合計ジャッジ時間 | 21,947 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 211 ms
70,840 KB |
testcase_01 | AC | 165 ms
69,396 KB |
testcase_02 | AC | 510 ms
75,704 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 270 ms
71,312 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 411 ms
71,764 KB |
testcase_27 | WA | - |
testcase_28 | AC | 315 ms
71,136 KB |
testcase_29 | WA | - |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); char[] a = new char[n]; Arrays.fill(a, 'a'); for (int i = 0; i < n; i++) { int[] cnt = new int[25]; for (int j = 0; j < 25; j++) { char c = (char) ('a' + j); a[i] = c; System.out.println("? " + String.valueOf(a)); cnt[j] = sc.nextInt(); } int j2 = 25; for (int j = 1; j < 25; j++) { if (cnt[j] != cnt[0]) { j2 = j; break; } } a[i] = (char) ('a' + j2); } System.out.println("! " + String.valueOf(a)); sc.close(); } }