結果

問題 No.355 数当てゲーム(2)
ユーザー 👑 rin204rin204
提出日時 2022-03-23 16:41:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 81,344 KB
実行使用メモリ 69,488 KB
平均クエリ数 25.40
最終ジャッジ日時 2024-07-17 03:07:40
合計ジャッジ時間 6,212 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
68,568 KB
testcase_01 AC 62 ms
68,696 KB
testcase_02 AC 59 ms
68,824 KB
testcase_03 AC 60 ms
68,312 KB
testcase_04 AC 63 ms
68,560 KB
testcase_05 AC 59 ms
68,568 KB
testcase_06 AC 61 ms
69,080 KB
testcase_07 AC 59 ms
68,440 KB
testcase_08 AC 59 ms
68,440 KB
testcase_09 AC 60 ms
68,824 KB
testcase_10 AC 59 ms
68,184 KB
testcase_11 AC 59 ms
68,056 KB
testcase_12 AC 59 ms
68,696 KB
testcase_13 AC 60 ms
68,568 KB
testcase_14 AC 58 ms
68,320 KB
testcase_15 AC 60 ms
69,208 KB
testcase_16 AC 58 ms
68,312 KB
testcase_17 AC 59 ms
68,440 KB
testcase_18 AC 59 ms
68,696 KB
testcase_19 AC 60 ms
68,568 KB
testcase_20 AC 62 ms
68,816 KB
testcase_21 AC 59 ms
69,072 KB
testcase_22 AC 60 ms
68,688 KB
testcase_23 AC 59 ms
68,304 KB
testcase_24 AC 61 ms
68,560 KB
testcase_25 AC 59 ms
68,944 KB
testcase_26 AC 58 ms
68,816 KB
testcase_27 AC 59 ms
68,976 KB
testcase_28 AC 61 ms
69,200 KB
testcase_29 AC 60 ms
68,688 KB
testcase_30 AC 61 ms
69,112 KB
testcase_31 AC 58 ms
69,200 KB
testcase_32 AC 61 ms
68,816 KB
testcase_33 AC 61 ms
68,816 KB
testcase_34 AC 61 ms
68,816 KB
testcase_35 AC 56 ms
68,808 KB
testcase_36 AC 57 ms
68,552 KB
testcase_37 AC 59 ms
69,320 KB
testcase_38 AC 60 ms
69,064 KB
testcase_39 AC 60 ms
68,680 KB
testcase_40 AC 60 ms
68,976 KB
testcase_41 AC 59 ms
69,480 KB
testcase_42 AC 58 ms
69,488 KB
testcase_43 AC 58 ms
68,552 KB
testcase_44 AC 59 ms
68,424 KB
testcase_45 AC 60 ms
68,788 KB
testcase_46 AC 59 ms
68,680 KB
testcase_47 AC 60 ms
68,680 KB
testcase_48 AC 66 ms
68,808 KB
testcase_49 AC 65 ms
69,192 KB
testcase_50 AC 60 ms
68,808 KB
testcase_51 AC 60 ms
68,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

def ask(q):
    print(*q, flush=True)
    x, y = map(int, input().split())
    if x == 4:
        exit()
    return x, y

ans = [0] * 10
for i in range(3, 10):
    x, y = ask((0, 1, 2, i))
    ans[i] = x + y
mi = min(ans[3:10])
lst = []
for i in range(3, 10):
    if len(lst) < 3 and ans[i] == mi:
        lst.append(i)
        
in_ = []
for i in range(10):
    if i in lst:
        continue
    x, y = ask(lst + [i])
    if x + y > 0:
        in_.append(i)
        
for lst in itertools.permutations(in_):
    ask(lst)
0