結果

問題 No.2881 Mod 2^N
ユーザー ルクルク
提出日時 2024-09-08 14:11:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 53,968 KB
最終ジャッジ日時 2024-09-08 14:11:15
合計ジャッジ時間 3,434 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,188 KB
testcase_01 AC 42 ms
52,396 KB
testcase_02 AC 39 ms
52,748 KB
testcase_03 AC 39 ms
53,480 KB
testcase_04 AC 39 ms
51,996 KB
testcase_05 AC 39 ms
52,952 KB
testcase_06 AC 39 ms
53,356 KB
testcase_07 AC 39 ms
52,484 KB
testcase_08 AC 40 ms
52,868 KB
testcase_09 AC 39 ms
52,864 KB
testcase_10 AC 40 ms
52,120 KB
testcase_11 AC 49 ms
52,560 KB
testcase_12 AC 39 ms
52,404 KB
testcase_13 AC 39 ms
52,492 KB
testcase_14 AC 39 ms
53,244 KB
testcase_15 AC 39 ms
52,824 KB
testcase_16 AC 39 ms
52,204 KB
testcase_17 AC 39 ms
53,004 KB
testcase_18 AC 39 ms
52,520 KB
testcase_19 AC 39 ms
53,968 KB
testcase_20 AC 39 ms
52,748 KB
testcase_21 AC 39 ms
52,000 KB
testcase_22 AC 40 ms
52,692 KB
testcase_23 AC 40 ms
52,084 KB
testcase_24 AC 40 ms
53,008 KB
testcase_25 AC 40 ms
52,576 KB
testcase_26 AC 39 ms
52,356 KB
testcase_27 AC 39 ms
53,816 KB
testcase_28 AC 38 ms
52,276 KB
testcase_29 AC 39 ms
52,684 KB
testcase_30 AC 39 ms
53,140 KB
testcase_31 AC 39 ms
52,272 KB
testcase_32 AC 39 ms
52,124 KB
testcase_33 AC 38 ms
52,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x,y=map(int,input().split())
if x==y:
    print(0)
    print("")
    exit()
if not y%2:
    print(-1)
    exit()
ans=[n]
s=bin(y)[2:]
i=0
while s[i]!='1':
    i+=1
k=[]
p=1
for i in range(len(s)-1):
    if s[i+1]=="1":
        k.append(p)
        p=1
    else:
        p+=1
k.append(p)
ans+=k
print(len(ans)-1)
for i in range(len(ans)-1):
    print(ans[i],end=" ")
print("")
0