結果
| 問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
| コンテスト | |
| ユーザー |
t8m8⛄️
|
| 提出日時 | 2017-06-09 22:28:24 |
| 言語 | Nim (2.2.6) |
| 結果 |
AC
|
| 実行時間 | 32 ms / 2,000 ms |
| コード長 | 243 bytes |
| 記録 | |
| コンパイル時間 | 2,347 ms |
| コンパイル使用メモリ | 68,600 KB |
| 実行使用メモリ | 6,144 KB |
| 最終ジャッジ日時 | 2026-03-19 17:46:15 |
| 合計ジャッジ時間 | 3,321 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 39) Warning: Use the new 'sugar' module instead; future is deprecated [Deprecated] /home/judge/data/code/Main.nim(1, 39) Warning: imported and not used: 'future' [UnusedImport] /home/judge/data/code/Main.nim(1, 28) Warning: imported and not used: 'algorithm' [UnusedImport]
ソースコード
import strutils, sequtils, algorithm, future
when isMainModule:
var
input = stdin.readLine.split.map(parseInt)
(n, m) = (input[0], input[1])
(a, b) = (0, 1)
for i in 3..n:
var x = (a + b) mod m
a = b
b = x
echo b
t8m8⛄️