結果

問題 No.355 数当てゲーム(2)
ユーザー 👑 KazunKazun
提出日時 2021-03-12 01:47:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 93,784 KB
平均クエリ数 5.52
最終ジャッジ日時 2024-07-17 02:58:42
合計ジャッジ時間 8,165 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
92,872 KB
testcase_01 AC 104 ms
93,280 KB
testcase_02 AC 103 ms
93,144 KB
testcase_03 AC 101 ms
93,016 KB
testcase_04 AC 106 ms
93,272 KB
testcase_05 AC 101 ms
93,364 KB
testcase_06 AC 101 ms
93,400 KB
testcase_07 AC 102 ms
93,096 KB
testcase_08 AC 100 ms
93,008 KB
testcase_09 AC 103 ms
93,144 KB
testcase_10 AC 100 ms
93,536 KB
testcase_11 AC 98 ms
93,784 KB
testcase_12 AC 103 ms
93,144 KB
testcase_13 AC 101 ms
93,004 KB
testcase_14 AC 99 ms
92,876 KB
testcase_15 AC 101 ms
93,424 KB
testcase_16 AC 99 ms
93,116 KB
testcase_17 AC 98 ms
92,924 KB
testcase_18 AC 99 ms
93,016 KB
testcase_19 AC 108 ms
93,400 KB
testcase_20 AC 102 ms
93,496 KB
testcase_21 AC 100 ms
93,300 KB
testcase_22 AC 99 ms
92,624 KB
testcase_23 AC 100 ms
93,472 KB
testcase_24 AC 103 ms
93,024 KB
testcase_25 AC 103 ms
93,532 KB
testcase_26 AC 105 ms
93,060 KB
testcase_27 AC 102 ms
93,128 KB
testcase_28 AC 103 ms
93,020 KB
testcase_29 AC 100 ms
93,292 KB
testcase_30 AC 107 ms
93,464 KB
testcase_31 AC 103 ms
93,160 KB
testcase_32 AC 100 ms
93,096 KB
testcase_33 AC 101 ms
93,264 KB
testcase_34 AC 104 ms
93,776 KB
testcase_35 AC 61 ms
75,336 KB
testcase_36 AC 103 ms
93,512 KB
testcase_37 AC 102 ms
93,176 KB
testcase_38 AC 106 ms
92,872 KB
testcase_39 AC 104 ms
93,056 KB
testcase_40 AC 103 ms
93,384 KB
testcase_41 AC 106 ms
93,476 KB
testcase_42 AC 102 ms
93,044 KB
testcase_43 AC 100 ms
93,384 KB
testcase_44 AC 103 ms
92,708 KB
testcase_45 AC 100 ms
93,288 KB
testcase_46 AC 100 ms
93,120 KB
testcase_47 AC 96 ms
92,508 KB
testcase_48 AC 102 ms
93,208 KB
testcase_49 AC 99 ms
93,120 KB
testcase_50 AC 102 ms
93,384 KB
testcase_51 AC 95 ms
92,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def quest(t):
    print(*t,flush=True)
    p,q=map(int,input().split())
    if p==4:
        exit()
    return p,q

def eat_bite(s,t):
    eat=bite=0
    for i in range(4):
        if s[i] in t:
            if s[i]==t[i]:
                eat+=1
            else:
                bite+=1
    return eat,bite

from itertools import permutations

X=[a+b+c+d for a,b,c,d in permutations("0123456789",r=4)]
X_len=len(X)
F=[1]*(X_len)

while True:
    for i in range(X_len):
        if F[i]:
            r=quest(X[i])
            break

    F[i]=0
    for j in range(i+1,X_len):
        if r!=eat_bite(X[i],X[j]):
            F[j]=0
0