結果
問題 | No.31 悪のミックスジュース |
ユーザー | kroton |
提出日時 | 2014-09-29 00:59:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 556 bytes |
コンパイル時間 | 395 ms |
コンパイル使用メモリ | 60,116 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-09 15:01:58 |
合計ジャッジ時間 | 952 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; typedef long long ll; int N, V; ll C[110]; ll sum[110]; ll func(int p){ ll res = 0; int v = V; v -= N; res += sum[N]; if(v <= 0){ return res; } res += sum[p] * (v / p); v -= p * (v / p); res += sum[v]; return res; } int main(){ cin >> N >> V; for(int i=0;i<N;i++){ cin >> C[i]; } sum[0] = 0; for(int i=0;i<N;i++){ sum[i+1] = sum[i] + C[i]; } ll res = 1ll << 62; for(int i=0;i<N;i++){ res = min(res, func(i + 1)); } cout << res << endl; }