結果

問題 No.613 Solitude by the window
ユーザー cielciel
提出日時 2017-12-14 09:21:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 53,916 KB
最終ジャッジ日時 2024-12-14 12:32:23
合計ジャッジ時間 2,119 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,252 KB
testcase_01 AC 40 ms
53,308 KB
testcase_02 AC 41 ms
52,248 KB
testcase_03 AC 40 ms
53,916 KB
testcase_04 AC 40 ms
52,748 KB
testcase_05 AC 40 ms
52,184 KB
testcase_06 AC 40 ms
52,076 KB
testcase_07 AC 40 ms
52,800 KB
testcase_08 AC 41 ms
52,860 KB
testcase_09 AC 40 ms
53,036 KB
testcase_10 AC 39 ms
52,764 KB
testcase_11 AC 41 ms
51,696 KB
testcase_12 AC 40 ms
52,068 KB
testcase_13 AC 40 ms
52,888 KB
testcase_14 AC 40 ms
52,524 KB
testcase_15 AC 39 ms
53,372 KB
testcase_16 AC 40 ms
53,220 KB
testcase_17 AC 39 ms
52,828 KB
testcase_18 AC 40 ms
52,476 KB
testcase_19 AC 40 ms
52,484 KB
testcase_20 AC 40 ms
52,068 KB
testcase_21 AC 40 ms
52,332 KB
testcase_22 AC 39 ms
53,152 KB
testcase_23 AC 40 ms
51,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k,M=map(int,input().split())
k=pow(2,k,M*M-1)
mul=lambda a,b:[(a[0]*b[0]+3*a[1]*b[1])%M,(a[1]*b[0]+b[1]*a[0])%M]
x=[2,1]
e=[1,0]
while k>0:
 if k%2:e=mul(e,x)
 x=mul(x,x);k//=2
print((2*e[0]-2)%M)
0