結果
問題 | No.5 数字のブロック |
ユーザー | つなぎ |
提出日時 | 2016-03-16 14:27:42 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 376 bytes |
コンパイル時間 | 276 ms |
コンパイル使用メモリ | 21,504 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-01 20:14:09 |
合計ジャッジ時間 | 2,722 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 0 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 111 ms
6,816 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
6,816 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
6,820 KB |
testcase_21 | AC | 1 ms
6,816 KB |
testcase_22 | AC | 0 ms
6,816 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 1 ms
6,820 KB |
testcase_27 | AC | 0 ms
6,816 KB |
testcase_28 | AC | 1 ms
6,816 KB |
testcase_29 | AC | 16 ms
6,820 KB |
testcase_30 | AC | 9 ms
6,824 KB |
testcase_31 | AC | 1 ms
6,820 KB |
testcase_32 | AC | 0 ms
6,820 KB |
testcase_33 | AC | 0 ms
6,820 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d\n%d\n",&l,&n); | ^~~~~~~~~~~~~~~~~~~~~~~ main.c:10:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | scanf("%d",&min[i]); | ^~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { int l,n,i,j,k; scanf("%d\n%d\n",&l,&n); i=n-1; int min[i]; for(i=0;i<n;i++){ scanf("%d",&min[i]); } for(i=0;i<n-1;i++){ for(j=i+1;j<n;j++){ if(min[i]>min[j]){ k=min[i]; min[i]=min[j]; min[j]=k; } } } int sum=0; for(i=0;i<n;i++){ if(sum<l){ sum=sum+min[i]; } else{break;} } if(sum=l)printf("%d",i); else printf("%d",i-1); return 0; }