結果

問題 No.355 数当てゲーム(2)
ユーザー rlangevinrlangevin
提出日時 2023-06-15 12:31:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 620 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 71,248 KB
平均クエリ数 36.96
最終ジャッジ日時 2024-06-23 13:18:12
合計ジャッジ時間 6,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
70,992 KB
testcase_01 AC 76 ms
71,248 KB
testcase_02 AC 76 ms
70,744 KB
testcase_03 AC 67 ms
70,488 KB
testcase_04 AC 68 ms
70,488 KB
testcase_05 AC 66 ms
70,744 KB
testcase_06 AC 71 ms
71,000 KB
testcase_07 AC 67 ms
70,392 KB
testcase_08 AC 65 ms
70,744 KB
testcase_09 AC 68 ms
70,872 KB
testcase_10 AC 68 ms
70,872 KB
testcase_11 AC 67 ms
71,000 KB
testcase_12 AC 68 ms
71,128 KB
testcase_13 AC 68 ms
70,872 KB
testcase_14 AC 67 ms
70,616 KB
testcase_15 AC 68 ms
70,872 KB
testcase_16 AC 68 ms
71,000 KB
testcase_17 AC 66 ms
70,616 KB
testcase_18 AC 66 ms
70,872 KB
testcase_19 AC 67 ms
70,616 KB
testcase_20 AC 66 ms
70,864 KB
testcase_21 AC 67 ms
70,480 KB
testcase_22 AC 65 ms
71,248 KB
testcase_23 AC 67 ms
70,480 KB
testcase_24 AC 74 ms
70,608 KB
testcase_25 AC 79 ms
70,352 KB
testcase_26 AC 77 ms
70,608 KB
testcase_27 AC 69 ms
70,992 KB
testcase_28 AC 71 ms
70,864 KB
testcase_29 AC 72 ms
70,736 KB
testcase_30 AC 67 ms
70,864 KB
testcase_31 AC 67 ms
70,224 KB
testcase_32 AC 68 ms
70,856 KB
testcase_33 AC 72 ms
71,016 KB
testcase_34 AC 67 ms
70,608 KB
testcase_35 AC 68 ms
70,424 KB
testcase_36 AC 68 ms
70,912 KB
testcase_37 AC 67 ms
70,856 KB
testcase_38 AC 66 ms
70,600 KB
testcase_39 AC 66 ms
70,728 KB
testcase_40 AC 67 ms
70,984 KB
testcase_41 AC 67 ms
70,600 KB
testcase_42 AC 68 ms
70,592 KB
testcase_43 AC 69 ms
70,856 KB
testcase_44 AC 67 ms
70,856 KB
testcase_45 AC 70 ms
70,088 KB
testcase_46 AC 67 ms
70,728 KB
testcase_47 AC 68 ms
70,600 KB
testcase_48 AC 69 ms
70,472 KB
testcase_49 AC 69 ms
71,112 KB
testcase_50 AC 68 ms
70,856 KB
testcase_51 AC 66 ms
70,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import *
from itertools import *

def check(L):
    print(*L)
    sys.stdout.flush()
    x, y = map(int, input().split())
    if [x, y] == [4, 0]:
        exit()
    return x, y

x, y = check([0, 1, 2, 3])
default = x + y

L = [0, 1, 2, 3]
ans = set()

for i in range(4):
    D = defaultdict(list)
    ma = 0
    for j in range(4, 10):
        L[i] = j
        x, y = check(L)
        D[x + y].append(j)
        ma = max(ma, x + y)
        L[i] = i
    if ma == default + 1:
        for v in D[ma]:
            ans.add(v)
    else:
        ans.add(i)

for t in permutations(ans):
    check(t)
0