結果

問題 No.2065 Sum of Min
ユーザー 遭難者遭難者
提出日時 2022-05-20 09:40:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 994 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 131,980 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-06 19:16:57
合計ジャッジ時間 28,792 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1,346 ms
6,816 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,691 ms
6,816 KB
testcase_09 AC 50 ms
6,820 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 872 ms
6,816 KB
testcase_13 AC 894 ms
6,820 KB
testcase_14 AC 881 ms
6,816 KB
testcase_15 AC 885 ms
6,820 KB
testcase_16 AC 878 ms
6,816 KB
testcase_17 AC 892 ms
6,820 KB
testcase_18 AC 880 ms
6,816 KB
testcase_19 AC 875 ms
6,820 KB
testcase_20 AC 878 ms
6,816 KB
testcase_21 AC 883 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <stdio.h>
#include <math.h>
#include <iostream>
#include <iomanip>
#include <vector>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <queue>
#include <stack>
#include <numeric>
#include <algorithm>
using namespace std;
using ll = long long;
//#include <atcoder/all>
// using namespace atcoder;
// using mint = modint;
#define rep(i, n) for (int i = 0; i < n; i++)
#define endl '\n'
#define print(n) cout << (n) << endl
#define ALL(a) (a).begin(), (a).end()
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n, q__;
    cin >> n >> q__;
    vector<ll> a(n);
    rep(i, n) cin >> a[i];
    for (int q_ = 0; q_ < q__; q_++)
    {
        int l, r;
        ll x;
        cin >> l >> r >> x;
        l--;
        long ans = 0;
        for (int i = l; i < r; i++)
            ans += min(a[i], x);
        cout << ans << endl;
    }
}
0