結果
問題 | No.786 京都大学の過去問 |
ユーザー | Bucchiman |
提出日時 | 2020-05-21 22:12:36 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 433 bytes |
コンパイル時間 | 122 ms |
コンパイル使用メモリ | 29,568 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-02 08:08:42 |
合計ジャッジ時間 | 944 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | RE | - |
ソースコード
/* * FileName: no_786_fix * CreatedDate: 2020-05-21 22:04:08 +0900 * LastModified: 2020-05-21 22:12:03 +0900 */ #include <stdio.h> #include <string.h> #include <stdlib.h> int main(void){ int n; scanf("%d",&n); long long int *dp = malloc(sizeof(int)*(n+1)); dp[0]=1; dp[1]=1; for(int i=2;i<n+1;i++){ dp[i] = dp[i-1] + dp[i-2]; } printf("%lld\n",dp[n]); free(dp); return 0; }