結果

問題 No.2881 Mod 2^N
ユーザー titiatitia
提出日時 2024-09-26 01:34:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-09-26 01:34:53
合計ジャッジ時間 3,231 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,136 KB
testcase_01 AC 32 ms
11,136 KB
testcase_02 AC 32 ms
11,008 KB
testcase_03 AC 31 ms
11,136 KB
testcase_04 AC 32 ms
11,136 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 32 ms
11,136 KB
testcase_07 AC 32 ms
11,008 KB
testcase_08 AC 32 ms
11,136 KB
testcase_09 AC 32 ms
11,136 KB
testcase_10 AC 32 ms
11,136 KB
testcase_11 AC 48 ms
11,008 KB
testcase_12 AC 32 ms
11,136 KB
testcase_13 AC 39 ms
11,136 KB
testcase_14 AC 32 ms
11,264 KB
testcase_15 AC 31 ms
11,136 KB
testcase_16 AC 31 ms
11,008 KB
testcase_17 AC 31 ms
11,264 KB
testcase_18 AC 31 ms
11,136 KB
testcase_19 AC 31 ms
11,136 KB
testcase_20 AC 31 ms
11,136 KB
testcase_21 AC 32 ms
11,136 KB
testcase_22 AC 33 ms
11,008 KB
testcase_23 AC 32 ms
11,008 KB
testcase_24 AC 31 ms
11,008 KB
testcase_25 AC 31 ms
11,136 KB
testcase_26 AC 31 ms
11,264 KB
testcase_27 AC 31 ms
11,008 KB
testcase_28 AC 31 ms
11,136 KB
testcase_29 AC 31 ms
11,136 KB
testcase_30 AC 31 ms
11,136 KB
testcase_31 AC 31 ms
11,136 KB
testcase_32 AC 36 ms
11,136 KB
testcase_33 AC 32 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from random import randint

N,X,Y=map(int,input().split())

if X==Y:
    print(0)
    exit()

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

def f(i,x):
    return (x*(1<<i) + 1)%(1<<N)

#print()

#for X in range(1,2**N):
#    now=X
#    for i in range(1,N+1):
#        to=f(i,now)
#        print(to,end=" ")
#    print()

ANS=[N]

LIST=[Y]

while LIST[-1]!=1:
    x=LIST[-1]-1
    while x%2==0:
        x//=2
    LIST.append(x)

LIST.reverse()

for i in range(len(LIST)-1):
    ind=-1
    for j in range(1,N+1):
        if LIST[i+1]==f(j,LIST[i]):
            ind=j
            break
    ANS.append(ind)

print(len(ANS))
print(*ANS)

            
        
0