結果

問題 No.862 XORでX
ユーザー convexineqconvexineq
提出日時 2021-04-04 12:22:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-06-08 04:58:28
合計ジャッジ時間 5,592 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
69,376 KB
testcase_01 AC 61 ms
69,248 KB
testcase_02 AC 75 ms
75,136 KB
testcase_03 AC 74 ms
75,520 KB
testcase_04 AC 51 ms
64,768 KB
testcase_05 AC 61 ms
72,036 KB
testcase_06 AC 94 ms
80,384 KB
testcase_07 AC 51 ms
66,000 KB
testcase_08 AC 74 ms
71,680 KB
testcase_09 AC 64 ms
71,424 KB
testcase_10 AC 66 ms
71,808 KB
testcase_11 AC 66 ms
71,424 KB
testcase_12 AC 61 ms
68,992 KB
testcase_13 AC 57 ms
67,456 KB
testcase_14 AC 51 ms
66,836 KB
testcase_15 AC 59 ms
69,920 KB
testcase_16 AC 74 ms
78,592 KB
testcase_17 AC 75 ms
78,496 KB
testcase_18 AC 75 ms
78,832 KB
testcase_19 AC 72 ms
78,336 KB
testcase_20 AC 93 ms
78,080 KB
testcase_21 AC 76 ms
78,324 KB
testcase_22 AC 102 ms
78,208 KB
testcase_23 AC 98 ms
78,080 KB
testcase_24 AC 70 ms
77,860 KB
testcase_25 AC 99 ms
78,336 KB
testcase_26 AC 88 ms
78,336 KB
testcase_27 AC 102 ms
78,336 KB
testcase_28 AC 96 ms
78,208 KB
testcase_29 AC 104 ms
78,588 KB
testcase_30 AC 105 ms
78,080 KB
testcase_31 AC 90 ms
77,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,x = map(int, input().split())
M = 10**5+6
use = [0]*M
v = 0
for i in range(1,n+1):
    use[i] = 1
    v ^= i

free = deque(range(n+1,M))
cnt = 0
from random import randrange
while v != x:
    while True:
        i = randrange(1,M)
        if use[i]==1: break
    use[i] = 0
    free.append(i)
    v ^= i
    if 0 < v^x < M and use[v^x] == 0:
        use[v^x] = 1
        break
    w = free.popleft()
    use[w] = 1
    v ^= w

for i in range(M):
    if use[i]:
        print(i)
0