結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | focus |
提出日時 | 2018-02-15 02:34:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 327 bytes |
コンパイル時間 | 536 ms |
コンパイル使用メモリ | 61,780 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-06 04:10:36 |
合計ジャッジ時間 | 4,354 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 250 ms
5,376 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
#include<iostream> #include<string> #include<cmath> #include<set> using namespace std; long long fabs(long long n){ if(n==2) return 1; if(n==1) return 0; return (fabs(n-1)+fabs(n-2)); } int main(void){ long long N,M,num; cin >> N >> M; num = fabs(N); cout << (num%M) << endl; return 0; }