Submission #1445045


Source Code Expand

#include<stdio.h>
#include<algorithm>
using namespace std;
int z,n,k,g;
int gcd(int x,int y){
	return y?gcd(y,x%y):x;
}
int main(){
	scanf("%d%d",&n,&k);
	for(int i=0; i<n; i++){
		int t;
		scanf("%d",&t);
		z = max(z,t);
		g = gcd(g,t);
	}
	puts(k <= z && k % g == 0 ? "POSSIBLE" : "IMPOSSIBLE");
	return 0;
}

Submission Info

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

Compile Error

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

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 0 ms 128 KB
sample_03.txt AC 1 ms 128 KB
sample_04.txt AC 1 ms 128 KB
subtask_1_01.txt AC 0 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 7 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 9 ms 128 KB
subtask_1_11.txt AC 10 ms 128 KB