結果

問題 No.4 おもりと天秤
ユーザー YamyukiYamyuki
提出日時 2016-12-26 13:32:28
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 20,736 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 17:46:57
合計ジャッジ時間 947 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 0 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 0 ms
5,376 KB
testcase_15 AC 0 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:9:9: warning: implicit declaration of function ‘qsort’ [-Wimplicit-function-declaration]
    9 |         qsort(w,n,sizeof(int),cmp);
      |         ^~~~~
main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%d",&n);
      |         ^~~~~~~~~~~~~~
main.c:8:26: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         for(r=0;r<n;r++) scanf("%d",&w[r]);
      |                          ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
int cmp(const void *a,const void *b){
	return *(int*)a-*(int*)b;
}
int main(){
	int n,w[128],r,l,re,le;
	scanf("%d",&n);
	for(r=0;r<n;r++) scanf("%d",&w[r]);
	qsort(w,n,sizeof(int),cmp);
	r=w[0];
	l=w[n-1];
	re=1;
	le=n-2;
	while(re<=le){
		if(l>r){
			r+=w[re];
			re++;
		}else{
			l+=w[le];
			le--;
		}
	}
	if(r==l) printf("possible\n");
	else printf("impossible\n");
	return 0;
}
0