結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-23 15:47:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 94 bytes
コンパイル時間 3,510 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 58,680 KB
最終ジャッジ日時 2024-09-23 15:49:30
合計ジャッジ時間 8,234 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,568 KB
testcase_01 AC 32 ms
52,332 KB
testcase_02 AC 32 ms
52,728 KB
testcase_03 AC 32 ms
52,560 KB
testcase_04 AC 34 ms
52,572 KB
testcase_05 AC 33 ms
53,408 KB
testcase_06 AC 32 ms
52,460 KB
testcase_07 AC 47 ms
52,884 KB
testcase_08 AC 35 ms
57,776 KB
testcase_09 AC 35 ms
57,560 KB
testcase_10 AC 42 ms
58,136 KB
testcase_11 AC 66 ms
57,724 KB
testcase_12 AC 48 ms
58,428 KB
testcase_13 AC 66 ms
58,680 KB
testcase_14 AC 50 ms
57,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a1=0
a2=1
for i in range(3,n+1):
	a2,a1=a2+a1,a2
	a2%=m
print(a2)
0