結果

問題 No.355 数当てゲーム(2)
ユーザー n_knuu
提出日時 2016-04-01 23:22:29
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 1,137 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 27,848 KB
平均クエリ数 16.88
最終ジャッジ日時 2024-07-16 09:15:41
合計ジャッジ時間 6,307 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 51 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_finish(x, y):
    return x == 4
l = list(range(4))
cnt = 0
a = set(range(10))
assert(len(a & set(l)) == 4)
print(*l)
cnt += 1
X, Y = map(int, input().split())
if is_finish(X, Y):
    exit(0)

for i in range(4):
    not_in = a - set(l)
    for n in not_in:
        tmpl = l[:]
        tmpl[i] = n
        assert(len(a & set(tmpl)) == 4)
        print(*tmpl)
        cnt += 1
        assert(cnt <= 100)
        tmpx, tmpy = map(int, input().split())
        if is_finish(tmpx, tmpy):
            exit(0)
        if tmpx > X:
            l = tmpl[:]
            X, Y = tmpx, tmpy
            break
        elif tmpx < X:
            break
    else:
        for j in range(i+1, 4):
            tmpl = l[:]
            tmpl[i], tmpl[j] = tmpl[j], tmpl[i]
            assert(len(a & set(tmpl)) == 4)
            print(*tmpl)
            cnt += 1
            assert(cnt <= 100)

            tmpx, tmpy = map(int, input().split())
            if is_finish(tmpx, tmpy):
                exit(0)
            if tmpx > X:
                l = tmpl[:]
                X, Y = tmpx, tmpy
                break
        else:
            assert(0)
0