結果

問題 No.2819 Binary Binary-Operator
ユーザー ra5anchorra5anchor
提出日時 2024-07-27 12:07:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 1,050 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 69,600 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-27 12:07:16
合計ジャッジ時間 8,485 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 64
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
lst = [0, 1]
pattern = list(itertools.product([0,1], repeat=4))
# print(pattern)

x, y = map(int, input().split())
xy = x*2 + y

K = 4
vs = list(itertools.product([0,1], repeat=K)) # 処理列の候補

for v in vs:
    ok = True
    for p in pattern:
        ans01 = p[xy]

        now = v[0]
        for i in range(K-1):
            nxt = v[i+1]
            now = p[now*2 + nxt]
        if now != ans01:
            ok = False
            break
    if ok == True:
        print(K)
        ans = list(v)
        print(*ans)
        res = int(input())
        print(res)
        exit()
0