結果

問題 No.2881 Mod 2^N
ユーザー miya145592miya145592
提出日時 2024-09-08 14:33:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-09-08 14:33:35
合計ジャッジ時間 3,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,008 KB
testcase_01 AC 39 ms
53,352 KB
testcase_02 AC 39 ms
52,744 KB
testcase_03 AC 39 ms
52,564 KB
testcase_04 AC 39 ms
52,068 KB
testcase_05 AC 39 ms
53,628 KB
testcase_06 AC 40 ms
52,732 KB
testcase_07 AC 39 ms
52,756 KB
testcase_08 AC 39 ms
52,600 KB
testcase_09 AC 40 ms
54,136 KB
testcase_10 AC 40 ms
52,664 KB
testcase_11 AC 38 ms
53,048 KB
testcase_12 AC 39 ms
52,312 KB
testcase_13 AC 39 ms
52,828 KB
testcase_14 AC 39 ms
52,532 KB
testcase_15 AC 39 ms
52,904 KB
testcase_16 AC 39 ms
51,940 KB
testcase_17 AC 39 ms
52,204 KB
testcase_18 AC 39 ms
53,288 KB
testcase_19 AC 40 ms
53,444 KB
testcase_20 AC 39 ms
52,688 KB
testcase_21 AC 39 ms
53,280 KB
testcase_22 AC 39 ms
52,872 KB
testcase_23 AC 39 ms
53,228 KB
testcase_24 AC 38 ms
52,936 KB
testcase_25 AC 39 ms
52,908 KB
testcase_26 AC 39 ms
53,576 KB
testcase_27 AC 40 ms
52,632 KB
testcase_28 AC 39 ms
52,072 KB
testcase_29 AC 39 ms
53,576 KB
testcase_30 AC 40 ms
52,272 KB
testcase_31 AC 40 ms
52,824 KB
testcase_32 AC 39 ms
53,076 KB
testcase_33 AC 40 ms
52,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, X, Y = map(int, input().split())
A = []
if X==Y:
    print(len(A))
    print(*A)
    exit()
if Y%2==0:
    print(-1)
    exit()
b = bin(Y)[2:]
A.append(N)
i = 0
while i<len(b):
    j = i+1
    while j<len(b) and b[j]=="0":
        j+=1
    if j<len(b):
        A.append(j-i)
    i = j
print(len(A))
print(*A)
0