結果
問題 | No.31 悪のミックスジュース |
ユーザー | myanta |
提出日時 | 2017-05-04 09:30:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 626 bytes |
コンパイル時間 | 409 ms |
コンパイル使用メモリ | 37,888 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-14 06:44:30 |
合計ジャッジ時間 | 1,212 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:22:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 22 | scanf("%d", &c[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include<cstdio> #include<vector> using namespace std; using ll=long long; int main(void) { int n, v, i, ln, m; vector<int> c; ll s, l; double ave, ave_min; while(scanf("%d%d", &n, &v)==2) { c.resize(n); s=0; for(i=0;i<n;i++) { scanf("%d", &c[i]); s+=c[i]; } if(v<=n) { printf("%lld\n", s); continue; } ln=n; ave_min=(double)s/ln; v-=n; l=0; for(i=0;i<n;i++) { l+=c[i]; ave=(double)l/(i+1); if(ave_min>ave) { ave_min=ave; ln=i+1; } } m=v-v/ln*ln; for(i=0;i<ln;i++) { s+=(ll)c[i]*(v/ln+(i<m)); } printf("%lld\n", s); } return 0; }