結果

問題 No.355 数当てゲーム(2)
ユーザー convexineqconvexineq
提出日時 2021-03-31 04:49:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 81,224 KB
実行使用メモリ 93,508 KB
平均クエリ数 5.12
最終ジャッジ日時 2024-07-17 03:01:00
合計ジャッジ時間 8,174 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
93,508 KB
testcase_01 AC 99 ms
93,148 KB
testcase_02 AC 89 ms
92,652 KB
testcase_03 AC 98 ms
92,760 KB
testcase_04 AC 105 ms
92,660 KB
testcase_05 AC 103 ms
93,192 KB
testcase_06 AC 104 ms
93,296 KB
testcase_07 AC 103 ms
92,700 KB
testcase_08 AC 94 ms
92,952 KB
testcase_09 AC 96 ms
92,784 KB
testcase_10 AC 92 ms
92,716 KB
testcase_11 AC 105 ms
93,184 KB
testcase_12 AC 97 ms
92,528 KB
testcase_13 AC 106 ms
93,132 KB
testcase_14 AC 107 ms
92,924 KB
testcase_15 AC 92 ms
92,336 KB
testcase_16 AC 105 ms
93,252 KB
testcase_17 AC 98 ms
92,892 KB
testcase_18 AC 96 ms
93,088 KB
testcase_19 AC 97 ms
92,696 KB
testcase_20 AC 90 ms
93,168 KB
testcase_21 AC 106 ms
92,980 KB
testcase_22 AC 100 ms
92,752 KB
testcase_23 AC 103 ms
92,620 KB
testcase_24 AC 99 ms
92,704 KB
testcase_25 AC 105 ms
93,228 KB
testcase_26 AC 95 ms
92,792 KB
testcase_27 AC 101 ms
92,892 KB
testcase_28 AC 101 ms
92,412 KB
testcase_29 AC 105 ms
92,756 KB
testcase_30 AC 96 ms
93,120 KB
testcase_31 AC 98 ms
92,832 KB
testcase_32 AC 104 ms
93,088 KB
testcase_33 AC 99 ms
92,784 KB
testcase_34 AC 98 ms
92,784 KB
testcase_35 AC 100 ms
93,192 KB
testcase_36 AC 105 ms
93,444 KB
testcase_37 AC 105 ms
93,220 KB
testcase_38 AC 94 ms
93,112 KB
testcase_39 AC 96 ms
92,716 KB
testcase_40 AC 96 ms
92,672 KB
testcase_41 AC 100 ms
92,532 KB
testcase_42 AC 106 ms
93,076 KB
testcase_43 AC 97 ms
92,888 KB
testcase_44 AC 99 ms
92,892 KB
testcase_45 AC 107 ms
93,020 KB
testcase_46 AC 95 ms
92,980 KB
testcase_47 AC 99 ms
93,012 KB
testcase_48 AC 101 ms
92,980 KB
testcase_49 AC 106 ms
93,248 KB
testcase_50 AC 104 ms
93,304 KB
testcase_51 AC 101 ms
93,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def g(x,v):
    aa = bb = 0
    for i in range(4):
        if v[i] == x[i]:
            aa += 1
        elif v[i] in x:
            bb += 1
    return aa,bb

def check(x,v,a,b):
    aa,bb = g(x,v)
    return aa==a and bb==b

def query(v):
    print(*v)
    if DEBUG:
        a,b = g(v,ans)
    else:
        a,b = map(int,input().split())
    return a,b

DEBUG = 0
ans = "1864"

from itertools import permutations
s = {"".join(map(str,i)) for i in permutations(range(10),4)}
c = 0
while True:
    v = s.pop()
    a,b = query(v)
    if a==4:
        exit()
    ns = set()
    for i in s:
        if check(i,v,a,b): ns.add(i)
    s = ns
0