結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | Elk |
提出日時 | 2018-06-05 23:41:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 400 bytes |
コンパイル時間 | 268 ms |
コンパイル使用メモリ | 31,104 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-30 10:09:15 |
合計ジャッジ時間 | 1,161 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 13 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 55 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 56 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:20:11: warning: 'num[2]' may be used uninitialized [-Wmaybe-uninitialized] 20 | printf("%d\n", num[2]); | ~~~~~~^~~~~~~~~~~~~~~~ main.cpp:5:9: note: 'num[2]' was declared here 5 | int num[3]; | ^~~
ソースコード
#include <stdio.h> int main(){ int N, M, tmp, i; int num[3]; scanf("%d %d", &N, &M); num[0] = 0; num[1] = 1; for(i = 2; i < N; i++){ num[2] = (num[1] + num[0])%M; //printf("%lld\n", num[2]); if(i != N - 1){ tmp = num[1]; num[1] = num[2]; num[0] = tmp; } } printf("%d\n", num[2]); return 0; }