結果

問題 No.1589 Bit Vector
ユーザー convexineqconvexineq
提出日時 2021-07-09 07:04:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-07-01 13:54:10
合計ジャッジ時間 3,419 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 40 ms
52,376 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 46 ms
52,224 KB
testcase_08 AC 41 ms
51,712 KB
testcase_09 AC 40 ms
51,584 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 41 ms
52,480 KB
testcase_12 AC 39 ms
51,712 KB
testcase_13 AC 40 ms
52,480 KB
testcase_14 AC 41 ms
52,224 KB
testcase_15 AC 40 ms
51,968 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 41 ms
52,224 KB
testcase_18 AC 39 ms
52,352 KB
testcase_19 AC 40 ms
52,224 KB
testcase_20 AC 43 ms
53,248 KB
testcase_21 AC 44 ms
53,504 KB
testcase_22 AC 44 ms
53,760 KB
testcase_23 AC 43 ms
54,016 KB
testcase_24 AC 44 ms
53,632 KB
testcase_25 AC 41 ms
53,760 KB
testcase_26 AC 41 ms
53,376 KB
testcase_27 AC 43 ms
54,272 KB
testcase_28 AC 44 ms
54,272 KB
testcase_29 AC 43 ms
53,760 KB
testcase_30 AC 44 ms
54,016 KB
testcase_31 AC 44 ms
53,760 KB
testcase_32 AC 44 ms
54,272 KB
testcase_33 AC 44 ms
54,016 KB
testcase_34 AC 42 ms
53,504 KB
testcase_35 AC 42 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def UPD(i,x):
    ans.append(f"UPD {i} {x}")

def AND(i,j,k):
    ans.append(f"AND {i} {j} {k}")

def XOR(i,j,k):
    ans.append(f"XOR {i} {j} {k}")

n,k = map(int,input().split())
ans = []

#加算
for i in range(1,n):
    for j in range((i+1).bit_length()):
        AND(n,i,j)
        XOR(j,i,j)
        UPD(i,0)
        XOR(i,i,n)

# kと和 を下の桁からみる。k について 0 -> or, 1 -> and と変換する
if k&1:
    UPD(n,0)
    XOR(n,0,n)
else:
    UPD(n,1)
k //= 2
for i in range(1,n):
    if k&1:
        AND(n,i,n)
    else:
        AND(0,i,n)
        XOR(n,i,n)
        XOR(n,0,n)
    k //= 2

print(len(ans))
print("\n".join(ans))
0