結果

問題 No.1808 Fullgold Alchemist
ユーザー MasKoaTSMasKoaTS
提出日時 2024-11-30 16:30:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 1,932 ms
コンパイル使用メモリ 204,472 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-11-30 16:30:08
合計ジャッジ時間 4,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 32 ms
6,528 KB
testcase_06 AC 59 ms
6,528 KB
testcase_07 AC 58 ms
6,656 KB
testcase_08 AC 80 ms
6,528 KB
testcase_09 AC 82 ms
6,400 KB
testcase_10 AC 82 ms
6,400 KB
testcase_11 AC 76 ms
6,400 KB
testcase_12 AC 57 ms
6,400 KB
testcase_13 AC 56 ms
6,400 KB
testcase_14 AC 56 ms
6,400 KB
testcase_15 AC 54 ms
6,400 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 11 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 14 ms
5,248 KB
testcase_21 AC 7 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 5 ms
5,248 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 4 ms
5,248 KB
testcase_26 AC 12 ms
5,248 KB
testcase_27 AC 16 ms
5,248 KB
testcase_28 AC 66 ms
6,016 KB
testcase_29 AC 23 ms
5,248 KB
testcase_30 AC 21 ms
5,248 KB
testcase_31 AC 62 ms
5,760 KB
testcase_32 AC 38 ms
5,248 KB
testcase_33 AC 49 ms
5,376 KB
testcase_34 AC 67 ms
6,016 KB
testcase_35 AC 45 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;


int main(){
    int n;  ll m;   cin >> n >> m;
    vector<ll> a(n);
    for(auto& x : a){
        cin >> x;
    }

    vector<ll> b = a;
    for(int i = 0; i < n - 1; ++i){
        b[i + 1] += b[i];
    }

    ll ans = a[0] / m;
    for(int i = 0; i < n; ++i){
        ll x = b[i] / (m * (i + 1));
        if(ans <= x){
            continue;
        }
        ans = x;
    }
    cout << ans << endl;

    return 0;
}
0