結果
問題 | No.305 鍵(2) |
ユーザー | convexineq |
提出日時 | 2021-01-13 03:54:05 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 78 ms / 2,000 ms |
コード長 | 610 bytes |
コンパイル時間 | 155 ms |
コンパイル使用メモリ | 82,264 KB |
実行使用メモリ | 76,648 KB |
平均クエリ数 | 92.62 |
最終ジャッジ日時 | 2024-07-17 02:56:47 |
合計ジャッジ時間 | 2,137 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 78 ms
70,800 KB |
testcase_01 | AC | 76 ms
75,700 KB |
testcase_02 | AC | 70 ms
75,984 KB |
testcase_03 | AC | 71 ms
76,148 KB |
testcase_04 | AC | 71 ms
76,324 KB |
testcase_05 | AC | 73 ms
75,276 KB |
testcase_06 | AC | 62 ms
70,564 KB |
testcase_07 | AC | 72 ms
75,276 KB |
testcase_08 | AC | 71 ms
75,388 KB |
testcase_09 | AC | 70 ms
76,648 KB |
testcase_10 | AC | 71 ms
75,436 KB |
testcase_11 | AC | 71 ms
74,860 KB |
testcase_12 | AC | 72 ms
75,712 KB |
ソースコード
def get(t): if DEBUG: return sum(ti==ai for ti,ai in zip(t,ANS)), ("unlocked" if t==ANS else "locked") else: return input().split() def ask(t): print(t) sys.stdout.flush() a,b = get(t) return int(a),b DEBUG = 0 ANS = "0100000000" import sys from itertools import product ans = [-1]*10 lst = [0]*10 for i in range(10): cnt,ok = -1,-1 for j in range(10): lst[i] = j x,res = ask("".join(map(str,lst))) if res == "unlocked": exit() if x > cnt: cnt = x ok = j ans[i] = ok lst[i] = 0 ask("".join(map(str,ans)))