結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 41 ms
52,996 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 39 ms
52,324 KB
testcase_07 AC 38 ms
53,360 KB
testcase_08 AC 38 ms
51,944 KB
testcase_09 AC 40 ms
52,552 KB
testcase_10 AC 39 ms
52,500 KB
testcase_11 WA -
testcase_12 AC 40 ms
52,916 KB
testcase_13 AC 39 ms
51,876 KB
testcase_14 AC 39 ms
52,892 KB
testcase_15 AC 43 ms
52,568 KB
testcase_16 AC 39 ms
52,132 KB
testcase_17 AC 39 ms
52,696 KB
testcase_18 AC 38 ms
52,896 KB
testcase_19 AC 39 ms
52,068 KB
testcase_20 AC 39 ms
52,288 KB
testcase_21 AC 39 ms
52,692 KB
testcase_22 AC 39 ms
52,608 KB
testcase_23 AC 39 ms
54,304 KB
testcase_24 AC 38 ms
52,180 KB
testcase_25 AC 38 ms
52,388 KB
testcase_26 AC 39 ms
53,372 KB
testcase_27 AC 38 ms
52,076 KB
testcase_28 AC 39 ms
52,268 KB
testcase_29 AC 38 ms
52,436 KB
testcase_30 AC 38 ms
52,956 KB
testcase_31 AC 39 ms
52,484 KB
testcase_32 AC 40 ms
53,816 KB
testcase_33 AC 39 ms
53,972 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==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