結果

問題 No.45 回転寿司
ユーザー nxterunxteru
提出日時 2017-06-05 23:05:11
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 188 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 1,110 ms
コンパイル使用メモリ 28,416 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-06-08 11:19:36
合計ジャッジ時間 2,846 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
13,824 KB
testcase_01 AC 64 ms
25,216 KB
testcase_02 AC 119 ms
43,520 KB
testcase_03 AC 148 ms
52,096 KB
testcase_04 AC 76 ms
27,136 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 55 ms
20,096 KB
testcase_07 AC 119 ms
43,264 KB
testcase_08 AC 17 ms
7,552 KB
testcase_09 AC 152 ms
50,560 KB
testcase_10 AC 35 ms
14,592 KB
testcase_11 AC 12 ms
6,016 KB
testcase_12 AC 136 ms
46,592 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 42 ms
16,896 KB
testcase_16 AC 20 ms
8,960 KB
testcase_17 AC 34 ms
13,568 KB
testcase_18 AC 20 ms
9,344 KB
testcase_19 AC 99 ms
36,480 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 42 ms
17,152 KB
testcase_27 AC 95 ms
35,200 KB
testcase_28 AC 47 ms
19,072 KB
testcase_29 AC 81 ms
30,720 KB
testcase_30 AC 87 ms
32,256 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 188 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int n,s[1000];
int dp[1000][100000];
int m(int i,int v);
int main(void){
   int i;
   scanf("%d",&n);

   for(i=0;i<n;i++){
       scanf("%d",&s[i]);
   }
    printf("%d",m(0,0));
}
int m(int i,int v){
    if(i>=n)
    return v;
    else if(dp[i][v])
    return dp[i][v];
    else{
    int x=m(i+2,v+s[i]);
    int y=m(i+1,v);
    dp[i][v]=x>y?x:y;
    return dp[i][v];
    }
}
0