結果

問題 No.862 XORでX
ユーザー convexineqconvexineq
提出日時 2021-04-04 12:56:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,272 KB
最終ジャッジ日時 2024-06-08 08:29:32
合計ジャッジ時間 4,991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,160 KB
testcase_01 AC 44 ms
60,032 KB
testcase_02 AC 45 ms
60,672 KB
testcase_03 AC 45 ms
60,160 KB
testcase_04 AC 45 ms
60,288 KB
testcase_05 AC 45 ms
60,672 KB
testcase_06 AC 45 ms
60,160 KB
testcase_07 AC 46 ms
60,416 KB
testcase_08 AC 57 ms
66,944 KB
testcase_09 AC 57 ms
66,944 KB
testcase_10 AC 56 ms
67,328 KB
testcase_11 AC 57 ms
67,456 KB
testcase_12 AC 46 ms
60,416 KB
testcase_13 AC 45 ms
60,288 KB
testcase_14 AC 46 ms
60,672 KB
testcase_15 AC 44 ms
60,416 KB
testcase_16 AC 67 ms
78,080 KB
testcase_17 AC 66 ms
78,080 KB
testcase_18 AC 68 ms
78,408 KB
testcase_19 AC 66 ms
78,336 KB
testcase_20 AC 120 ms
78,988 KB
testcase_21 AC 89 ms
78,920 KB
testcase_22 AC 114 ms
78,844 KB
testcase_23 AC 106 ms
78,972 KB
testcase_24 AC 70 ms
78,428 KB
testcase_25 AC 102 ms
78,744 KB
testcase_26 AC 115 ms
78,696 KB
testcase_27 AC 113 ms
79,028 KB
testcase_28 AC 100 ms
78,720 KB
testcase_29 AC 104 ms
79,104 KB
testcase_30 AC 82 ms
78,592 KB
testcase_31 AC 123 ms
79,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = 0
from random import randrange
while v != x:
    idx = randrange(0,n)
    y = use[idx]
    v ^= y
    if 0 < v^x < M and use_lst[v^x]==0:
        use[idx] = v^x
        break
    jdx = randrange(0,nn)
    w = free[jdx]
    v ^= w
    use_lst[y] = 0
    use_lst[w] = 1
    use[idx],free[jdx] = w,y

for i in use:
    print(i)
0