結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー focusfocus
提出日時 2018-02-15 02:34:27
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 327 bytes
コンパイル時間 530 ms
コンパイル使用メモリ 61,912 KB
実行使用メモリ 100,480 KB
最終ジャッジ日時 2024-12-23 15:24:51
合計ジャッジ時間 28,355 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 2 ms
8,320 KB
testcase_04 AC 5 ms
10,496 KB
testcase_05 AC 222 ms
8,576 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0