結果

問題 No.2819 Binary Binary-Operator
ユーザー navel_tosnavel_tos
提出日時 2024-07-27 01:53:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 1,291 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 71,196 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-27 01:53:24
合計ジャッジ時間 8,413 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
68,984 KB
testcase_01 AC 64 ms
70,736 KB
testcase_02 AC 62 ms
69,992 KB
testcase_03 AC 62 ms
70,384 KB
testcase_04 AC 61 ms
69,948 KB
testcase_05 AC 71 ms
69,396 KB
testcase_06 AC 62 ms
69,840 KB
testcase_07 AC 63 ms
69,228 KB
testcase_08 AC 61 ms
70,028 KB
testcase_09 AC 62 ms
69,428 KB
testcase_10 AC 62 ms
69,400 KB
testcase_11 AC 62 ms
70,908 KB
testcase_12 AC 60 ms
69,724 KB
testcase_13 AC 61 ms
70,040 KB
testcase_14 AC 60 ms
69,884 KB
testcase_15 AC 60 ms
69,820 KB
testcase_16 AC 60 ms
69,344 KB
testcase_17 AC 65 ms
69,540 KB
testcase_18 AC 62 ms
69,352 KB
testcase_19 AC 61 ms
69,852 KB
testcase_20 AC 61 ms
68,680 KB
testcase_21 AC 62 ms
70,712 KB
testcase_22 AC 61 ms
69,404 KB
testcase_23 AC 62 ms
70,344 KB
testcase_24 AC 62 ms
69,816 KB
testcase_25 AC 61 ms
69,952 KB
testcase_26 AC 62 ms
70,740 KB
testcase_27 AC 61 ms
69,432 KB
testcase_28 AC 60 ms
70,572 KB
testcase_29 AC 62 ms
70,144 KB
testcase_30 AC 62 ms
69,044 KB
testcase_31 AC 61 ms
69,328 KB
testcase_32 AC 62 ms
69,320 KB
testcase_33 AC 60 ms
69,976 KB
testcase_34 AC 62 ms
69,372 KB
testcase_35 AC 61 ms
70,268 KB
testcase_36 AC 62 ms
69,852 KB
testcase_37 AC 61 ms
69,736 KB
testcase_38 AC 62 ms
70,028 KB
testcase_39 AC 62 ms
69,552 KB
testcase_40 AC 63 ms
69,044 KB
testcase_41 AC 62 ms
69,180 KB
testcase_42 AC 61 ms
69,500 KB
testcase_43 AC 61 ms
69,436 KB
testcase_44 AC 61 ms
69,520 KB
testcase_45 AC 61 ms
70,368 KB
testcase_46 AC 62 ms
70,524 KB
testcase_47 AC 61 ms
69,772 KB
testcase_48 AC 62 ms
69,796 KB
testcase_49 AC 63 ms
69,776 KB
testcase_50 AC 65 ms
71,060 KB
testcase_51 AC 65 ms
70,544 KB
testcase_52 AC 65 ms
70,032 KB
testcase_53 AC 74 ms
69,216 KB
testcase_54 AC 63 ms
70,312 KB
testcase_55 AC 64 ms
69,620 KB
testcase_56 AC 64 ms
71,196 KB
testcase_57 AC 65 ms
68,984 KB
testcase_58 AC 64 ms
69,220 KB
testcase_59 AC 65 ms
69,876 KB
testcase_60 AC 64 ms
69,624 KB
testcase_61 AC 63 ms
70,048 KB
testcase_62 AC 63 ms
70,688 KB
testcase_63 AC 64 ms
69,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder 2819 Binary Binary-Operator

#入力(X, Y)とPのパターン、合計2^6通りを区別できるような列を考えたい
#隠された演算子2^4通りを定義  P[i][x][y]: i番目のx * yの結果
P = [[[0] * 2 for _ in range(2)] for i in range(1 << 4)]
has_bit = lambda S, x: S >> x & 1
for S in range(1 << 4):
    for i, (x, y) in enumerate([(0, 0), (0, 1), (1, 0), (1, 1)]):
        if has_bit(S, i):
            P[S][x][y] = 1
    
#演算子番号iと演算列Lを渡す。演算結果を返す
def calc(i, L):
    ans = L[0]
    for x in range(1, len(L)):
        ans = P[i][ans][L[x]]
    return ans

#X, Yを与える。すべての演算子でX * Yの結果が一致するような列L: [X, Y, ・・・]を探す
def find(X, Y):
    for N in range(3, 16):
        L = [X, Y] + [0] * (N - 2)
        for S in range(1 << (N - 2)):
            for x in range(N - 2):
                if has_bit(S, x):
                    L[2 + x] = 1
            for i in range(1 << 4):
                ans1 = P[i][X][Y]
                ans2 = calc(i, L)
                if ans1 != ans2:
                    break
            else:
                return L

#驚いたが実行してみる
X, Y = map(int, input().split())
L = find(X, Y)
print(len(L))
print(*L)
exit(print(input()))
0