結果

問題 No.355 数当てゲーム(2)
ユーザー matsu7874matsu7874
提出日時 2016-04-02 01:07:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 73,456 KB
平均クエリ数 16.06
最終ジャッジ日時 2024-07-16 23:24:05
合計ジャッジ時間 7,359 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
73,236 KB
testcase_01 AC 68 ms
71,548 KB
testcase_02 AC 79 ms
72,820 KB
testcase_03 AC 73 ms
73,324 KB
testcase_04 AC 70 ms
72,976 KB
testcase_05 AC 85 ms
72,680 KB
testcase_06 AC 80 ms
72,308 KB
testcase_07 AC 71 ms
71,912 KB
testcase_08 AC 69 ms
71,888 KB
testcase_09 AC 69 ms
72,840 KB
testcase_10 AC 69 ms
71,120 KB
testcase_11 AC 69 ms
71,624 KB
testcase_12 AC 69 ms
71,496 KB
testcase_13 AC 70 ms
71,976 KB
testcase_14 AC 70 ms
71,928 KB
testcase_15 AC 70 ms
71,756 KB
testcase_16 AC 68 ms
71,308 KB
testcase_17 AC 70 ms
72,156 KB
testcase_18 AC 67 ms
71,524 KB
testcase_19 AC 69 ms
71,848 KB
testcase_20 AC 70 ms
72,576 KB
testcase_21 AC 67 ms
72,188 KB
testcase_22 AC 69 ms
73,192 KB
testcase_23 AC 70 ms
71,440 KB
testcase_24 AC 67 ms
72,836 KB
testcase_25 AC 74 ms
72,772 KB
testcase_26 AC 71 ms
71,316 KB
testcase_27 AC 71 ms
72,064 KB
testcase_28 AC 69 ms
72,220 KB
testcase_29 AC 68 ms
73,260 KB
testcase_30 AC 70 ms
71,368 KB
testcase_31 AC 74 ms
71,444 KB
testcase_32 AC 70 ms
71,488 KB
testcase_33 AC 69 ms
73,048 KB
testcase_34 AC 68 ms
72,228 KB
testcase_35 AC 66 ms
71,232 KB
testcase_36 AC 69 ms
72,920 KB
testcase_37 AC 68 ms
73,456 KB
testcase_38 AC 70 ms
73,284 KB
testcase_39 AC 70 ms
73,064 KB
testcase_40 AC 68 ms
72,900 KB
testcase_41 AC 70 ms
73,280 KB
testcase_42 AC 71 ms
72,048 KB
testcase_43 AC 69 ms
72,920 KB
testcase_44 AC 69 ms
72,316 KB
testcase_45 AC 68 ms
71,800 KB
testcase_46 AC 68 ms
72,720 KB
testcase_47 AC 69 ms
72,812 KB
testcase_48 AC 70 ms
72,872 KB
testcase_49 AC 70 ms
71,584 KB
testcase_50 AC 68 ms
71,604 KB
testcase_51 AC 72 ms
71,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import random
import itertools

popu = [[j for j in range(10)] for i in range(4)]
ans = []
his = []
a = [0, 1, 2, 3]
while True:
    print(*a)
    sys.stdout.flush()
    x, y = map(int, input().split())

    for i in range(4):
        for j in range(x):
            popu[i].append(a[i])
        for j in range(4):
            if j == i:
                continue
            for k in range(y):
                popu[j].append(a[i])

    if x == 4:
        exit()
    if x + y == 4:
        ans = a[:]
        break

    if x == 0:
        for i in range(4):
            while a[i] in popu[i]:
                popu[i].remove(a[i])
    if y == 0:
        for i in range(4):
            for j in range(4):
                if j == i:
                    continue
                while a[i] in popu[j]:
                    popu[j].remove(a[i])
    his.append(a[:])
    a = [random.choice(popu[i]) for i in range(4)]
    while any([a.count(i) > 1 for i in range(10)]) or a in his:
        a = [random.choice(popu[i]) for i in range(4)]


for a in itertools.permutations(ans):
    print(*a)
    sys.stdout.flush()
    x, y = map(int, input().split())
    if x == 4:
        exit()
0