結果

問題 No.1589 Bit Vector
ユーザー chineristACchineristAC
提出日時 2021-07-09 02:20:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-07-01 13:50:11
合計ジャッジ時間 4,343 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,936 KB
testcase_01 AC 48 ms
55,936 KB
testcase_02 AC 47 ms
56,064 KB
testcase_03 AC 50 ms
55,168 KB
testcase_04 AC 48 ms
55,296 KB
testcase_05 AC 46 ms
55,680 KB
testcase_06 AC 47 ms
55,808 KB
testcase_07 AC 47 ms
55,808 KB
testcase_08 AC 46 ms
55,296 KB
testcase_09 AC 47 ms
55,424 KB
testcase_10 AC 47 ms
55,936 KB
testcase_11 AC 48 ms
55,552 KB
testcase_12 AC 46 ms
55,552 KB
testcase_13 AC 47 ms
55,680 KB
testcase_14 AC 46 ms
55,848 KB
testcase_15 AC 48 ms
56,064 KB
testcase_16 AC 47 ms
55,552 KB
testcase_17 AC 48 ms
55,552 KB
testcase_18 AC 48 ms
55,808 KB
testcase_19 AC 47 ms
55,680 KB
testcase_20 AC 83 ms
77,568 KB
testcase_21 AC 84 ms
77,696 KB
testcase_22 AC 82 ms
77,952 KB
testcase_23 AC 83 ms
77,824 KB
testcase_24 AC 83 ms
77,568 KB
testcase_25 AC 82 ms
77,824 KB
testcase_26 AC 83 ms
77,824 KB
testcase_27 AC 81 ms
77,864 KB
testcase_28 AC 82 ms
77,440 KB
testcase_29 AC 85 ms
77,696 KB
testcase_30 AC 84 ms
77,696 KB
testcase_31 AC 84 ms
77,568 KB
testcase_32 AC 85 ms
77,440 KB
testcase_33 AC 82 ms
77,440 KB
testcase_34 AC 82 ms
78,080 KB
testcase_35 AC 48 ms
55,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def update_ai_by_aj(i,j):
    res = []
    res.append("UPD {} {}".format(i,1))
    res.append("AND {} {} {}".format(i,i,j))
    return res

def sort(i,j,k):
    assert i < j
    """
    ・ai <- ai(1-aj)+aj = ai^aj^(ai and aj)
    ・aj <- aiaj = (ai and aj)
    """
    res = []
    res += update_ai_by_aj(k,j)
    res.append("AND {} {} {}".format(j,i,j))
    res.append("XOR {} {} {}".format(i,i,k))
    res.append("XOR {} {} {}".format(i,i,j))
    return res


N,K = mi()

res = []

for i in range(N):
    for j in range(N-1,i,-1):
        res += sort(j-1,j,N)
res += update_ai_by_aj(N,K-1)

print(len(res))
print(*res,sep="\n")
0