結果
問題 | No.617 Nafmo、買い出しに行く |
ユーザー | funakoshi |
提出日時 | 2019-09-02 13:50:13 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 742 bytes |
コンパイル時間 | 1,340 ms |
コンパイル使用メモリ | 30,208 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-08 22:32:35 |
合計ジャッジ時間 | 3,945 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdbool.h> #include <math.h> int swap(const void* a, const void* b); int main(void) { int num,weight,maxweight=0,max=0; int weightlist[8]={0}; scanf("%d %d",&num,&weight); for(int i=0;i<num;i++) { scanf("%d",&weightlist[i]); max+=weightlist[i]; } qsort(weightlist, 8, sizeof(int), swap); for(int i=num;0<=i;i--) { int val = maxweight+weightlist[i]; if(val<weight) { if(max>val) { maxweight+=weightlist[i]; } } } printf("%d",maxweight); } int swap(const void* a, const void* b) { return *(int*)a - *(int*)b; }