Submission #500928


Source Code Expand

// {{{ include
#include <cstdio>
#include <cmath>
#include <cstring>
#include <iostream>
#include <vector>
#include <string>
#include <set>
#include <map>
#include <queue>
#include <algorithm>
// }}}

using namespace std;

typedef long long ll;
inline int in(){int x;scanf("%d",&x);return x;}

ll Ai[128];

int main()
{
  ll N = in(), B = in(), C = in();
  for (int i = 0; i < N; i++) Ai[i] = in();
  
  ll ans = 0;
  for (int i = N - 1; i >= 0; i--){
    if (C == 0) break;
    ll x = min(C, B);
    ans += Ai[i] * x;
    C -= x;
  }
  cout << ans << endl;
  return 0;
}

Submission Info

Submission Time
Task B - ラー油
User tanishiOrisano
Language C++ (GCC 4.9.2)
Score 50
Code Size 607 Byte
Status AC
Exec Time 35 ms
Memory 928 KiB

Compile Error

./Main.cpp: In function ‘int in()’:
./Main.cpp:17:37: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
 inline int in(){int x;scanf("%d",&x);return x;}
                                     ^

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 24 ms 716 KiB
00_example_02.txt AC 26 ms 800 KiB
00_example_03.txt AC 26 ms 800 KiB
00_example_04.txt AC 26 ms 732 KiB
00_example_05.txt AC 26 ms 800 KiB
00_example_06.txt AC 26 ms 804 KiB
10_rand_01.txt AC 26 ms 800 KiB
10_rand_02.txt AC 25 ms 800 KiB
10_rand_03.txt AC 26 ms 676 KiB
10_rand_04.txt AC 25 ms 800 KiB
10_rand_05.txt AC 24 ms 928 KiB
20_SB_SC_01.txt AC 28 ms 916 KiB
20_SB_SC_02.txt AC 28 ms 796 KiB
20_SB_SC_03.txt AC 24 ms 916 KiB
20_SB_SC_04.txt AC 26 ms 800 KiB
20_SB_SC_05.txt AC 26 ms 800 KiB
30_SB_LC_01.txt AC 26 ms 808 KiB
30_SB_LC_02.txt AC 25 ms 800 KiB
30_SB_LC_03.txt AC 25 ms 804 KiB
30_SB_LC_04.txt AC 25 ms 916 KiB
30_SB_LC_05.txt AC 26 ms 808 KiB
40_LB_SC_01.txt AC 24 ms 720 KiB
40_LB_SC_02.txt AC 26 ms 804 KiB
40_LB_SC_03.txt AC 26 ms 804 KiB
40_LB_SC_04.txt AC 25 ms 800 KiB
40_LB_SC_05.txt AC 25 ms 804 KiB
50_LB_LC_01.txt AC 25 ms 804 KiB
50_LB_LC_02.txt AC 24 ms 800 KiB
50_LB_LC_03.txt AC 26 ms 676 KiB
50_LB_LC_04.txt AC 24 ms 800 KiB
50_LB_LC_05.txt AC 25 ms 920 KiB
60_max_01.txt AC 26 ms 796 KiB
60_max_02.txt AC 26 ms 800 KiB
60_max_03.txt AC 26 ms 796 KiB
60_max_04.txt AC 26 ms 796 KiB
60_max_05.txt AC 26 ms 796 KiB
70_same_01.txt AC 35 ms 796 KiB
70_same_02.txt AC 25 ms 716 KiB
70_same_03.txt AC 25 ms 668 KiB
70_same_04.txt AC 25 ms 924 KiB
70_same_05.txt AC 23 ms 812 KiB
80_sparse_01.txt AC 26 ms 796 KiB
80_sparse_02.txt AC 25 ms 804 KiB
80_sparse_03.txt AC 23 ms 804 KiB
80_sparse_04.txt AC 25 ms 800 KiB
80_sparse_05.txt AC 23 ms 804 KiB
80_sparse_06.txt AC 23 ms 924 KiB
80_sparse_07.txt AC 24 ms 800 KiB
80_sparse_08.txt AC 27 ms 796 KiB
80_sparse_09.txt AC 24 ms 924 KiB
80_sparse_10.txt AC 26 ms 800 KiB
90_hand_01.txt AC 24 ms 808 KiB
90_hand_02.txt AC 26 ms 672 KiB
90_hand_03.txt AC 23 ms 716 KiB
90_hand_04.txt AC 25 ms 928 KiB
90_hand_05.txt AC 24 ms 796 KiB
95_corner_01.txt AC 25 ms 728 KiB
95_corner_02.txt AC 24 ms 904 KiB
95_corner_03.txt AC 25 ms 800 KiB
95_corner_04.txt AC 24 ms 800 KiB
95_corner_05.txt AC 23 ms 676 KiB