結果
問題 | No.4 おもりと天秤 |
ユーザー | roaiziro |
提出日時 | 2015-09-25 15:26:09 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 824 bytes |
コンパイル時間 | 244 ms |
コンパイル使用メモリ | 20,992 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-19 09:12:36 |
合計ジャッジ時間 | 8,475 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,376 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1,764 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:36:5: warning: implicit declaration of function ‘memset’ [-Wimplicit-function-declaration] 36 | memset(memo, -1, sizeof(memo)); | ^~~~~~ main.c:2:1: note: include ‘<string.h>’ or provide a declaration of ‘memset’ 1 | #include<stdio.h> +++ |+#include <string.h> 2 | main.c:36:5: warning: incompatible implicit declaration of built-in function ‘memset’ [-Wbuiltin-declaration-mismatch] 36 | memset(memo, -1, sizeof(memo)); | ^~~~~~ main.c:36:5: note: include ‘<string.h>’ or provide a declaration of ‘memset’ main.c:37:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 37 | scanf("%d", &wn); | ^~~~~~~~~~~~~~~~ main.c:39:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 39 | scanf("%d", &w[i]); | ^~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> #define N 100 #define W 10001 int memo[N][W], w[N], wn; int f(int i, int j) { int k; if(j == 0){ return(j); } if(wn <= i){ return(j); } if(0 < memo[i][j]){ return(memo[i][j]); }else{ for(k = i; k < wn; k++){ if(w[k] <= j){ memo[i][j] = f(i + 1, j - w[k]); } } } return(memo[i][j]); } int main(int argc, const char * argv[]) { int i, sum = 0; memset(memo, -1, sizeof(memo)); scanf("%d", &wn); for(i = 0; i < wn; i++){ scanf("%d", &w[i]); sum += w[i]; } if(sum % 2 == 1){ printf("impossiblen\n"); }else if(f(0, sum/2) == 0){ printf("possible\n"); }else{ printf("impossible\n"); } return 0; }