Submission #2994468


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

using ll = long long int;
using ld = long double;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
template<typename Q_temp>
using smaller_queue = priority_queue <Q_temp, vector<Q_temp>, greater<Q_temp> >;

const int INF = (int) 1e9;
const ll LINF = (ll) 4e18;
const ll MOD = (ll) (1e9 + 7);
const double PI = acos(-1.0);
const int limit = 100010;

#define REP(i,m,n) for(ll i = m; i < (ll)(n); ++i)
#define rep(i,n) REP(i, 0, n)
#define MP make_pair
#define YES(n) cout << ((n) ? "YES" : "NO") << endl
#define Yes(n) cout << ((n) ? "Yes" : "No") << endl
#define Possible(n) cout << ((n) ? "Possible" : "Impossible") << endl
#define NP(v) next_permutation(v.begin(),v.end())
#define debug(x) cout << #x << ":" << x << endl;
#define debug2(x) for(auto a : x) cout << a << " "; cout << endl;

vector<pii> around = {MP(1, 0), MP(-1, 0), MP(0, 1), MP(0, -1)};

//------------------------------------------------------

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n, b, c;
    cin >> n >> b >> c;
    int a[n];
    rep(i, n) cin >> a[i];
    reverse(a, a + n);
    int cnt = 0, happy = 0;

    rep(i, n) {
        if (cnt == c) break;
        int day_cnt = 0;
        while (day_cnt < b && cnt < c) {
            cnt++;
            day_cnt++;
            happy += a[i];
        }
    }
    cout << happy << endl;
    return 0;
}

Submission Info

Submission Time
Task B - ラー油
User stoq
Language C++14 (GCC 5.4.1)
Score 50
Code Size 1458 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 50 / 50
Status
AC × 6
AC × 67
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt, 00_example_03.txt, 00_example_04.txt, 00_example_05.txt, 00_example_06.txt
All 00_example_01.txt, 00_example_02.txt, 00_example_03.txt, 00_example_04.txt, 00_example_05.txt, 00_example_06.txt, 10_rand_01.txt, 10_rand_02.txt, 10_rand_03.txt, 10_rand_04.txt, 10_rand_05.txt, 20_SB_SC_01.txt, 20_SB_SC_02.txt, 20_SB_SC_03.txt, 20_SB_SC_04.txt, 20_SB_SC_05.txt, 30_SB_LC_01.txt, 30_SB_LC_02.txt, 30_SB_LC_03.txt, 30_SB_LC_04.txt, 30_SB_LC_05.txt, 40_LB_SC_01.txt, 40_LB_SC_02.txt, 40_LB_SC_03.txt, 40_LB_SC_04.txt, 40_LB_SC_05.txt, 50_LB_LC_01.txt, 50_LB_LC_02.txt, 50_LB_LC_03.txt, 50_LB_LC_04.txt, 50_LB_LC_05.txt, 60_max_01.txt, 60_max_02.txt, 60_max_03.txt, 60_max_04.txt, 60_max_05.txt, 70_same_01.txt, 70_same_02.txt, 70_same_03.txt, 70_same_04.txt, 70_same_05.txt, 80_sparse_01.txt, 80_sparse_02.txt, 80_sparse_03.txt, 80_sparse_04.txt, 80_sparse_05.txt, 80_sparse_06.txt, 80_sparse_07.txt, 80_sparse_08.txt, 80_sparse_09.txt, 80_sparse_10.txt, 90_hand_01.txt, 90_hand_02.txt, 90_hand_03.txt, 90_hand_04.txt, 90_hand_05.txt, 95_corner_01.txt, 95_corner_02.txt, 95_corner_03.txt, 95_corner_04.txt, 95_corner_05.txt, 00_example_01.txt, 00_example_02.txt, 00_example_03.txt, 00_example_04.txt, 00_example_05.txt, 00_example_06.txt
Case Name Status Exec Time Memory
00_example_01.txt AC 1 ms 256 KB
00_example_02.txt AC 1 ms 256 KB
00_example_03.txt AC 1 ms 256 KB
00_example_04.txt AC 1 ms 256 KB
00_example_05.txt AC 1 ms 256 KB
00_example_06.txt AC 1 ms 256 KB
10_rand_01.txt AC 1 ms 256 KB
10_rand_02.txt AC 1 ms 256 KB
10_rand_03.txt AC 1 ms 256 KB
10_rand_04.txt AC 1 ms 256 KB
10_rand_05.txt AC 1 ms 256 KB
20_SB_SC_01.txt AC 1 ms 256 KB
20_SB_SC_02.txt AC 1 ms 256 KB
20_SB_SC_03.txt AC 1 ms 256 KB
20_SB_SC_04.txt AC 1 ms 256 KB
20_SB_SC_05.txt AC 1 ms 256 KB
30_SB_LC_01.txt AC 1 ms 256 KB
30_SB_LC_02.txt AC 1 ms 256 KB
30_SB_LC_03.txt AC 1 ms 256 KB
30_SB_LC_04.txt AC 1 ms 256 KB
30_SB_LC_05.txt AC 1 ms 256 KB
40_LB_SC_01.txt AC 1 ms 256 KB
40_LB_SC_02.txt AC 1 ms 256 KB
40_LB_SC_03.txt AC 1 ms 256 KB
40_LB_SC_04.txt AC 1 ms 256 KB
40_LB_SC_05.txt AC 1 ms 256 KB
50_LB_LC_01.txt AC 1 ms 256 KB
50_LB_LC_02.txt AC 1 ms 256 KB
50_LB_LC_03.txt AC 1 ms 256 KB
50_LB_LC_04.txt AC 1 ms 256 KB
50_LB_LC_05.txt AC 1 ms 256 KB
60_max_01.txt AC 1 ms 256 KB
60_max_02.txt AC 1 ms 256 KB
60_max_03.txt AC 1 ms 256 KB
60_max_04.txt AC 1 ms 256 KB
60_max_05.txt AC 1 ms 256 KB
70_same_01.txt AC 1 ms 256 KB
70_same_02.txt AC 1 ms 256 KB
70_same_03.txt AC 1 ms 256 KB
70_same_04.txt AC 1 ms 256 KB
70_same_05.txt AC 1 ms 256 KB
80_sparse_01.txt AC 1 ms 256 KB
80_sparse_02.txt AC 1 ms 256 KB
80_sparse_03.txt AC 1 ms 256 KB
80_sparse_04.txt AC 1 ms 256 KB
80_sparse_05.txt AC 1 ms 256 KB
80_sparse_06.txt AC 1 ms 256 KB
80_sparse_07.txt AC 1 ms 256 KB
80_sparse_08.txt AC 1 ms 256 KB
80_sparse_09.txt AC 1 ms 256 KB
80_sparse_10.txt AC 1 ms 256 KB
90_hand_01.txt AC 1 ms 256 KB
90_hand_02.txt AC 1 ms 256 KB
90_hand_03.txt AC 1 ms 256 KB
90_hand_04.txt AC 1 ms 256 KB
90_hand_05.txt AC 1 ms 256 KB
95_corner_01.txt AC 1 ms 256 KB
95_corner_02.txt AC 1 ms 256 KB
95_corner_03.txt AC 1 ms 256 KB
95_corner_04.txt AC 1 ms 256 KB
95_corner_05.txt AC 1 ms 256 KB