Submission #1445066


Source Code Expand

#include <cstdio>

int gcd(int a, int b) {
  if(a == 0 || b == 0)
    return a + b;
  int r = a % b;
  while(r > 0) {
    a = b;
    b = r;
    r = a % b;
  }
  return b;
}

int main() {
  int n, k, x, biggie;
  int g = 0;
  scanf("%d%d", &n, &k);
  biggie = 0;
  for(int i = 0; i < n; ++i) {
    scanf("%d", &x);
    g = gcd(g, x);
    if(x > biggie)
      biggie = x;
  }
  if(k % g == 0 && biggie >= k)
    printf("POSSIBLE");
  else
    printf("IMPOSSIBLE");
  return 0;
}

Submission Info

Submission Time
Task A - Getting Difference
User Tinca_Matei
Language C++14 (GCC 5.4.1)
Score 300
Code Size 508 Byte
Status AC
Exec Time 12 ms
Memory 128 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:18:24: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d%d", &n, &k);
                        ^
./Main.cpp:21:20: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &x);
                    ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 4
AC × 19
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt
All sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt, sample_01.txt, sample_02.txt, sample_03.txt, sample_04.txt, subtask_1_01.txt, subtask_1_02.txt, subtask_1_03.txt, subtask_1_04.txt, subtask_1_05.txt, subtask_1_06.txt, subtask_1_07.txt, subtask_1_08.txt, subtask_1_09.txt, subtask_1_10.txt, subtask_1_11.txt
Case Name Status Exec Time Memory
sample_01.txt AC 1 ms 128 KB
sample_02.txt AC 1 ms 128 KB
sample_03.txt AC 1 ms 128 KB
sample_04.txt AC 1 ms 128 KB
subtask_1_01.txt AC 1 ms 128 KB
subtask_1_02.txt AC 1 ms 128 KB
subtask_1_03.txt AC 12 ms 128 KB
subtask_1_04.txt AC 12 ms 128 KB
subtask_1_05.txt AC 6 ms 128 KB
subtask_1_06.txt AC 2 ms 128 KB
subtask_1_07.txt AC 8 ms 128 KB
subtask_1_08.txt AC 11 ms 128 KB
subtask_1_09.txt AC 5 ms 128 KB
subtask_1_10.txt AC 12 ms 128 KB
subtask_1_11.txt AC 10 ms 128 KB