結果
問題 | No.4 おもりと天秤 |
ユーザー | 👑 testestest |
提出日時 | 2015-08-10 03:02:49 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 422 bytes |
コンパイル時間 | 314 ms |
コンパイル使用メモリ | 20,608 KB |
実行使用メモリ | 8,352 KB |
最終ジャッジ日時 | 2024-07-18 06:26:58 |
合計ジャッジ時間 | 6,706 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,948 KB |
testcase_02 | AC | 0 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 0 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 0 ms
6,944 KB |
testcase_09 | AC | 0 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 0 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 0 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 0 ms
6,948 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:18:1: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration] 18 | scanf("%d",&n); | ^~~~~ main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ +++ |+#include <stdio.h> 1 | int a[100],n; main.c:18:1: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch] 18 | scanf("%d",&n); | ^~~~~ main.c:18:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ main.c:20:9: warning: implicit declaration of function ‘puts’ [-Wimplicit-function-declaration] 20 | if(s%2){puts("impossible");return 0;} | ^~~~ main.c:20:9: note: include ‘<stdio.h>’ or provide a declaration of ‘puts’ main.c:21:1: warning: implicit declaration of function ‘qsort’ [-Wimplicit-function-declaration] 21 | qsort(a,n,4,c); | ^~~~~
ソースコード
int a[100],n; int c(const void*a,const void*b){return*(int*)b-*(int*)a;} /*降順ソート*/ int v(int x,int y,int i){ int j; for(j=i+1;j<n&&y>=0;j++){ if(a[j]==x)return 1; if(a[j]<x)if(v(x-a[j],y,j))return 1; y-=a[j]; } return 0; } int main(){ int i,s=0; scanf("%d",&n); for(i=0;~scanf("%d",a+i);)s+=a[i++]; if(s%2){puts("impossible");return 0;} qsort(a,n,4,c); puts(v(s/2,s/2,-1)?"possible":"impossible"); return 0; }