Submission #3244259


Source Code Expand

#include <cstdio>

using namespace std;

int main() {
  int n, d, x;
  scanf("%d%d%d", &n, &d, &x);

  int a;
  for (int i = 1; i <= n; i++) {
    scanf("%d", &a);
    for (int j = 1; j <= d; j += a) x++;
  }

  printf("%d\n", x);
  return 0;
}

Submission Info

Submission Time
Task B - Chocolate
User icewaterGreentea
Language C++14 (Clang 3.8.0)
Score 200
Code Size 262 Byte
Status AC
Exec Time 2 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 12
Set Name Test Cases
Sample sample-01.txt, sample-02.txt, sample-03.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, sample-01.txt, sample-02.txt, sample-03.txt
Case Name Status Exec Time Memory
01.txt AC 1 ms 256 KB
02.txt AC 2 ms 256 KB
03.txt AC 1 ms 256 KB
04.txt AC 1 ms 256 KB
05.txt AC 1 ms 256 KB
06.txt AC 1 ms 256 KB
07.txt AC 1 ms 256 KB
08.txt AC 1 ms 256 KB
09.txt AC 1 ms 256 KB
sample-01.txt AC 1 ms 256 KB
sample-02.txt AC 1 ms 256 KB
sample-03.txt AC 1 ms 256 KB