結果
問題 | No.45 回転寿司 |
ユーザー | arishiki |
提出日時 | 2016-04-04 12:31:56 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 875 bytes |
コンパイル時間 | 280 ms |
コンパイル使用メモリ | 21,120 KB |
実行使用メモリ | 8,228 KB |
最終ジャッジ日時 | 2024-11-24 11:27:51 |
合計ジャッジ時間 | 163,994 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 499 ms
6,528 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 91 ms
6,528 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 0 ms
6,528 KB |
testcase_23 | AC | 0 ms
8,096 KB |
testcase_24 | AC | 0 ms
6,528 KB |
testcase_25 | AC | 0 ms
6,656 KB |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | AC | 1 ms
5,248 KB |
testcase_32 | AC | 1 ms
5,248 KB |
testcase_33 | TLE | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:15:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%d", &N); | ^~~~~~~~~~~~~~~ main.c:18:20: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | for(i=0;i<N;i++) scanf("%d", V+i); | ^~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> /* ルールの説明がわかりにくいが、 間を1個以上開けた上昇列として指定し、 和が最大になるようにする*/ /* 間は1個開けるか2個開けるかどっちか。 なぜなら、3つ以上開ける時、その真ん中にあるやつを他を変えずに取れるから。*/ /* 最初の2個のうち、どちらかはとることになる*/ int mymax(int a, int b); int maxsushi(int *V, int N); int main(void){ int i, N; scanf("%d", &N); int V[N]; for(i=0;i<N;i++) scanf("%d", V+i); printf("%d\n", maxsushi(V, N)); return 0; } int mymax(int a, int b){ if(a>b) return a; else return b; } int maxsushi(int *V, int N){ if(N<=0) return 0; else if(N==1) return *V; else if(N==2) return mymax(*V, *(V+1)); else return mymax((*V)+maxsushi(V+2, N-2), (*(V+1))+maxsushi(V+3, N-3)); }