結果
問題 | No.107 モンスター |
ユーザー | packet0 |
提出日時 | 2014-12-19 02:16:14 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 699 bytes |
コンパイル時間 | 591 ms |
コンパイル使用メモリ | 21,376 KB |
実行使用メモリ | 8,348 KB |
最終ジャッジ日時 | 2024-06-12 01:35:57 |
合計ジャッジ時間 | 6,849 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,656 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 0 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 0 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 0 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 0 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:34:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 34 | scanf("%d", &num); | ^~~~~~~~~~~~~~~~~ main.c:36:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 36 | scanf("%d", score+i); | ^~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #define MAX_MONSTER 16 int num; int score[MAX_MONSTER]; int end_mask = 0; int getScore(const int mask, const int life, const int max_life) { if(mask == end_mask) return life; int max = 0, i; for(i=0; i<num; i++) { if(!(mask & 1 << i)) { int tmp_life = life + score[i]; if(tmp_life > 0) { if(tmp_life > max_life) tmp_life = max_life; int tmp = getScore(mask | 1 << i, tmp_life, score[i] < 0 ? max_life + 100 : max_life); if(tmp > max) max = tmp; } } } return max; } int main() { scanf("%d", &num); for(int i=0; i<num; i++) { scanf("%d", score+i); end_mask |= 1 << i; } printf("%d\n", getScore(0, 100, 100)); return 0; }