結果

問題 No.2819 Binary Binary-Operator
ユーザー flippergoflippergo
提出日時 2024-11-10 11:04:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 69,600 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-11-10 11:04:20
合計ジャッジ時間 7,456 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
68,192 KB
testcase_01 AC 54 ms
68,960 KB
testcase_02 AC 56 ms
68,576 KB
testcase_03 AC 56 ms
68,704 KB
testcase_04 AC 56 ms
68,320 KB
testcase_05 AC 66 ms
68,832 KB
testcase_06 AC 55 ms
68,704 KB
testcase_07 AC 55 ms
68,704 KB
testcase_08 AC 55 ms
68,696 KB
testcase_09 AC 57 ms
68,320 KB
testcase_10 AC 55 ms
68,704 KB
testcase_11 AC 56 ms
68,448 KB
testcase_12 AC 57 ms
68,576 KB
testcase_13 AC 57 ms
68,960 KB
testcase_14 AC 55 ms
68,448 KB
testcase_15 AC 56 ms
68,576 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 55 ms
68,320 KB
testcase_21 AC 54 ms
68,704 KB
testcase_22 AC 57 ms
68,576 KB
testcase_23 AC 55 ms
68,576 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 55 ms
68,576 KB
testcase_29 AC 57 ms
69,088 KB
testcase_30 AC 56 ms
68,320 KB
testcase_31 AC 64 ms
68,952 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 58 ms
68,064 KB
testcase_35 AC 57 ms
68,192 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 56 ms
68,448 KB
testcase_39 AC 57 ms
68,960 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 56 ms
68,448 KB
testcase_43 AC 57 ms
68,824 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 58 ms
68,600 KB
testcase_47 AC 56 ms
68,448 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 57 ms
68,576 KB
testcase_57 AC 63 ms
68,576 KB
testcase_58 AC 57 ms
68,704 KB
testcase_59 AC 56 ms
68,704 KB
testcase_60 AC 58 ms
68,448 KB
testcase_61 AC 56 ms
68,704 KB
testcase_62 AC 57 ms
68,864 KB
testcase_63 AC 54 ms
68,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
x,y = map(int,input().split())
N = 10
ans = 0
for v in product((0,1),repeat=N):
    C = {0:set(),1:set()}
    for f in product((0,1),repeat=4):
        a = v[0]
        for i in range(1,N):
            b = v[i]
            a = f[a*2+b]
        C[a].add(f[2*x+y])
    if len(C[0])==len(C[1]):
        ans = v[:]
        C1 = C
        break
print(N)
print(*ans)
t = int(input())
print(C1[t].pop())
0