結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー |
|
提出日時 | 2022-10-19 18:59:24 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 1,457 ms / 2,000 ms |
コード長 | 228 bytes |
コンパイル時間 | 152 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-29 20:31:25 |
合計ジャッジ時間 | 5,453 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
def main(): N, M = map(int, input().split()) before, current = 0, 1 for _ in range(3, N+1): before, current = (current) % M, (before + current) % M print(current) if __name__ == "__main__": main()