結果

問題 No.1589 Bit Vector
ユーザー shotoyooshotoyoo
提出日時 2021-09-26 17:21:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 833 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 87,184 KB
実行使用メモリ 78,896 KB
最終ジャッジ日時 2023-09-19 02:55:56
合計ジャッジ時間 11,666 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 120 ms
78,464 KB
testcase_26 AC 113 ms
78,508 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n,k = list(map(int, input().split()))
t = int(input())
import random
_a = [random.randint(0,1) for _ in range(n+1)]
s = sum(_a[:n])
ans = []
def UPD(i, v):
    ans.append(("UPD", i, v))
    _a[i] = v
def AND(i, j, k):
    ans.append(("AND", i, j, k))
    _a[k] = _a[i] and _a[j]
def XOR(i, j, k):
    ans.append(("XOR", i, j, k))
    _a[k] = _a[i]^_a[j]
def swap(i,j):
    UPD(n,0)
    XOR(i,n,n)
    AND(i,j,i)
    XOR(j,n,n)
    XOR(i,n,j)
for i in range(1,n):
    for j in range(i)[::-1]:
        swap(j,j+1)
UPD(n,0)
XOR(n-k,n,n)
s2 = sum(_a[:n])
assert s==s2
print(len(ans))
write("\n".join([" ".join(map(str, item)) for item in ans]))
0