結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー t8m8⛄️t8m8⛄️
提出日時 2017-06-09 22:28:24
言語 Nim
(2.2.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 3,087 ms
コンパイル使用メモリ 65,944 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-30 01:18:24
合計ジャッジ時間 4,129 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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]

ソースコード

diff #

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
0