結果
| 問題 | No.314 ケンケンパ |
| コンテスト | |
| ユーザー |
PicklesSuperior
|
| 提出日時 | 2019-02-21 14:13:07 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 1,000 ms |
| コード長 | 220 bytes |
| コンパイル時間 | 614 ms |
| コンパイル使用メモリ | 53,208 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-17 18:08:50 |
| 合計ジャッジ時間 | 1,358 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
6 | scanf("%d",&n);
| ~~~~~^~~~~~~~~
ソースコード
#include<iostream>
using namespace std;
int main(){
int a=1,b=0,c=0,n,ta,tb,tc,p=1000000007;
scanf("%d",&n);
while(n--){
ta=a;tb=b;tc=c;
a=(tb+tc)%p;
b=ta;
c=tb;
}
printf("%d\n",((a+b)%p+c)%p);
return 0;
}
PicklesSuperior