結果

問題 No.1808 Fullgold Alchemist
ユーザー rogi52rogi52
提出日時 2022-10-04 00:46:26
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 2,815 ms
コンパイル使用メモリ 201,328 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-28 06:55:17
合計ジャッジ時間 4,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef unsigned long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N,M; cin >> N >> M;
    vector<int> A(N);
    rep(i,N) cin >> A[i];

    ll K = [&]() {
        ll ok = 0, ng = 1e10;
        while(ng - ok > 1) {
            ll mid = (ok + ng) / 2;
            ([&](ll x) {
                ll stock = 0;
                rep(i,N) {
                    if(A[i] + stock < x) return false;
                    stock = A[i] + stock - x;
                }
                return true;
            }(mid) ? ok : ng) = mid;
        }
        return ok;
    }();

    cout << K / M << endl;
}
0