結果
問題 | No.21 平均の差 |
ユーザー | TLwiegehtt |
提出日時 | 2015-07-08 05:11:40 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 868 bytes |
コンパイル時間 | 393 ms |
コンパイル使用メモリ | 24,960 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-08 01:38:46 |
合計ジャッジ時間 | 902 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:56:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 56 | scanf("%d", &n); | ^~~~~~~~~~~~~~~ main.c:57:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 57 | scanf("%d", &k); | ^~~~~~~~~~~~~~~ main.c:59:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 59 | scanf("%d", &num[i]); | ^~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <math.h> int num[15]; int stack[20]; int scnt=0; int gAve=0; void saiki(int digit, int k){ int i; if(k == 0 && digit == 0){ int s; int tAve; int ssum = 0; double minAve = 9999999.0; double maxAve = 0.0; for(s=0;s<scnt;s++){ double ag = 0.0; for(i=0;i<stack[s];i++){ ag = ag + (1.0*num[ssum+i]); } ag = ag/(1.0*stack[s]); if(minAve > ag ){ minAve = ag; } if(maxAve < ag ){ maxAve = ag; } ssum += stack[s]; } tAve = (int)ceil(maxAve-minAve); if(gAve < tAve){ gAve = tAve; } return; } for(i=1;i<=digit;i++){ stack[scnt] = i; scnt++; saiki(digit-i, k-1); scnt--; } return; } int main(void){ int i,n,k; scanf("%d", &n); scanf("%d", &k); for(i=0;i<n;i++){ scanf("%d", &num[i]); } saiki(n,k); printf("%d\n", gAve); return 0; }