結果

問題 No.2881 Mod 2^N
ユーザー tassei903tassei903
提出日時 2024-09-08 17:17:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 686 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-09-08 17:17:13
合計ジャッジ時間 4,167 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,492 KB
testcase_01 AC 38 ms
52,680 KB
testcase_02 AC 38 ms
53,536 KB
testcase_03 AC 40 ms
52,468 KB
testcase_04 AC 41 ms
52,996 KB
testcase_05 AC 39 ms
52,668 KB
testcase_06 AC 40 ms
52,544 KB
testcase_07 AC 40 ms
53,484 KB
testcase_08 AC 40 ms
53,504 KB
testcase_09 AC 39 ms
53,288 KB
testcase_10 AC 40 ms
53,024 KB
testcase_11 AC 41 ms
52,644 KB
testcase_12 AC 40 ms
52,708 KB
testcase_13 AC 40 ms
52,696 KB
testcase_14 AC 39 ms
52,408 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 39 ms
52,948 KB
testcase_18 WA -
testcase_19 AC 40 ms
52,072 KB
testcase_20 WA -
testcase_21 AC 41 ms
53,456 KB
testcase_22 AC 42 ms
52,468 KB
testcase_23 AC 40 ms
52,192 KB
testcase_24 AC 39 ms
53,064 KB
testcase_25 AC 39 ms
54,164 KB
testcase_26 AC 39 ms
53,684 KB
testcase_27 AC 39 ms
52,404 KB
testcase_28 AC 39 ms
52,704 KB
testcase_29 AC 39 ms
52,416 KB
testcase_30 AC 39 ms
53,412 KB
testcase_31 AC 39 ms
52,512 KB
testcase_32 AC 39 ms
52,332 KB
testcase_33 AC 39 ms
53,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
######################################################################

def F(x, a, n):
    for i in a:
        x = ((x <<i ) + 1) % (1 << n)
    return x

n, x, y = na()

if y % 2 == 0:
    print(-1)
    exit()

f = []
for i in range(64):
    if y >> i & 1:
        f.append(i)

ans = [n]

for i in range(len(f)-2, -1, -1):
    ans.append(f[i+1] - f[i])

print(len(ans))
print(*ans)
#print(F(x, ans, n))
0