結果

問題 No.1871 divisXor
ユーザー hir355hir355
提出日時 2022-03-11 22:47:42
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,087 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 87,096 KB
実行使用メモリ 71,712 KB
最終ジャッジ日時 2023-10-14 08:03:43
合計ジャッジ時間 6,522 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 79 ms
71,364 KB
testcase_03 AC 78 ms
71,668 KB
testcase_04 AC 78 ms
71,404 KB
testcase_05 AC 77 ms
71,484 KB
testcase_06 AC 77 ms
71,268 KB
testcase_07 AC 77 ms
71,360 KB
testcase_08 AC 78 ms
71,364 KB
testcase_09 AC 78 ms
71,288 KB
testcase_10 AC 76 ms
71,236 KB
testcase_11 AC 77 ms
71,224 KB
testcase_12 AC 77 ms
71,224 KB
testcase_13 AC 77 ms
71,328 KB
testcase_14 AC 78 ms
71,360 KB
testcase_15 AC 78 ms
71,328 KB
testcase_16 AC 78 ms
71,272 KB
testcase_17 AC 79 ms
71,336 KB
testcase_18 AC 77 ms
71,616 KB
testcase_19 AC 79 ms
71,332 KB
testcase_20 AC 78 ms
71,228 KB
testcase_21 AC 77 ms
71,228 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 79 ms
71,356 KB
testcase_27 AC 78 ms
71,232 KB
testcase_28 AC 79 ms
71,372 KB
testcase_29 AC 79 ms
71,176 KB
testcase_30 AC 77 ms
71,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n < 100:
    exit(1)
if n == 0:
    print(-1)
    exit(0)
ans = []
p = [2, 5, 11, 17, 37, 67, 131, 257, 521, 1031, 2053, 4099, 8209, 16411, 32771, 65537, 131101, 262147, 524309, 1048583, 2097169, 4194319, 8388617, 16777259, 33554467, 67108879, 134217757, 268435459, 536870923, 1073741827, 2147483659, 4294967311, 8589934609, 17179869209, 34359738421, 68719476767, 137438953481, 274877906951, 549755813911, 1099511627791, 2199023255579, 4398046511119, 8796093022237, 17592186044423, 35184372088891, 70368744177679, 140737488355333, 281474976710677, 562949953421381, 1125899906842679, 2251799813685269, 4503599627370517, 9007199254740997, 18014398509482143, 36028797018963971, 72057594037928017, 144115188075855881, 288230376151711813, 576460752303423619, 1152921504606847009]
p.reverse()
idx = 0
tmp = 0
while n > 1:
    x = -1
    while idx < len(p) and len(bin(p[idx] + 1)) == len(bin(n)):
        x = p[idx]
        idx += 1
    if x != -1:
        ans.append(x)
        n ^= x + 1
    else:
        idx += 1
if n == 1:
    ans.append(1)
print(len(ans))
print(*ans)
0