結果

問題 No.1589 Bit Vector
ユーザー 👑 rin204rin204
提出日時 2022-01-26 18:58:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 656 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 74,496 KB
最終ジャッジ日時 2024-12-23 12:47:14
合計ジャッジ時間 5,361 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
53,888 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 43 ms
53,632 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 44 ms
54,272 KB
testcase_05 AC 44 ms
54,144 KB
testcase_06 AC 43 ms
54,016 KB
testcase_07 AC 43 ms
54,400 KB
testcase_08 AC 43 ms
54,272 KB
testcase_09 AC 43 ms
54,016 KB
testcase_10 AC 43 ms
53,888 KB
testcase_11 AC 43 ms
54,144 KB
testcase_12 AC 43 ms
54,016 KB
testcase_13 AC 43 ms
54,144 KB
testcase_14 AC 43 ms
53,888 KB
testcase_15 AC 44 ms
53,888 KB
testcase_16 AC 44 ms
54,304 KB
testcase_17 AC 42 ms
54,144 KB
testcase_18 AC 45 ms
53,888 KB
testcase_19 AC 43 ms
54,528 KB
testcase_20 AC 66 ms
74,368 KB
testcase_21 AC 65 ms
74,240 KB
testcase_22 AC 68 ms
74,368 KB
testcase_23 AC 70 ms
74,112 KB
testcase_24 AC 67 ms
74,112 KB
testcase_25 AC 68 ms
74,368 KB
testcase_26 AC 68 ms
74,240 KB
testcase_27 AC 68 ms
74,240 KB
testcase_28 AC 67 ms
74,112 KB
testcase_29 AC 67 ms
74,112 KB
testcase_30 AC 67 ms
74,212 KB
testcase_31 AC 66 ms
74,112 KB
testcase_32 AC 66 ms
74,112 KB
testcase_33 AC 67 ms
74,496 KB
testcase_34 AC 65 ms
74,368 KB
testcase_35 AC 43 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

n, K = map(int, input().split())

ans = []

#A = [random.randrange(2) for _ in range(n + 1)]
#an = int(sum(A) >= K)


def UPD(i, x):
    ans.append(f"UPD {i} {x}")
    #A[i] = x

def AND(i, j, k):
    ans.append(f"AND {i} {j} {k}")
    #A[i] = A[j] & A[k]
    
def XOR(i, j, k):
    ans.append(f"XOR {i} {j} {k}")
    #A[i] = A[j] ^ A[k]

# sort 1111....0000
for i in range(n):
    for j in range(n - 1, 0, -1):
        XOR(n, j, j - 1)
        AND(j, j, j - 1)
        XOR(j - 1, j, n)
        
UPD(n, 0)
XOR(n, n, K - 1)
    
print(len(ans))
print(*ans, sep="\n")


#assert A[n] == an
0