結果
問題 | No.786 京都大学の過去問 |
ユーザー | Bucchiman |
提出日時 | 2020-05-21 22:21:28 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 462 bytes |
コンパイル時間 | 215 ms |
コンパイル使用メモリ | 29,568 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-02 08:20:03 |
合計ジャッジ時間 | 1,538 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
コンパイルメッセージ
main.c: In function 'main': main.c:22:5: warning: 'free' called on pointer to an unallocated object [-Wfree-nonheap-object] 22 | free(dp); | ^~~~~~~~ main.c:14:19: note: returned from '__builtin_alloca_with_align' 14 | long long int dp[n+1]; | ^~
ソースコード
/* * FileName: no_786_fix * CreatedDate: 2020-05-21 22:04:08 +0900 * LastModified: 2020-05-21 22:21:11 +0900 */ #include <stdio.h> #include <string.h> #include <stdlib.h> int main(void){ int n; scanf("%d",&n); long long int dp[n+1]; // 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; }