結果

問題 No.36 素数が嫌い!
ユーザー TLwiegehttTLwiegehtt
提出日時 2015-07-17 03:27:05
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 22,912 KB
実行使用メモリ 11,308 KB
最終ジャッジ日時 2024-07-08 08:19:51
合計ジャッジ時間 7,349 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
11,136 KB
testcase_01 WA -
testcase_02 AC 236 ms
11,212 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 229 ms
11,096 KB
testcase_06 AC 230 ms
11,136 KB
testcase_07 AC 230 ms
11,096 KB
testcase_08 AC 120 ms
11,136 KB
testcase_09 AC 132 ms
11,200 KB
testcase_10 AC 129 ms
11,204 KB
testcase_11 AC 258 ms
11,048 KB
testcase_12 AC 242 ms
11,044 KB
testcase_13 AC 242 ms
11,108 KB
testcase_14 WA -
testcase_15 AC 146 ms
11,148 KB
testcase_16 AC 242 ms
11,028 KB
testcase_17 AC 233 ms
11,104 KB
testcase_18 AC 153 ms
11,212 KB
testcase_19 AC 138 ms
11,228 KB
testcase_20 AC 156 ms
11,136 KB
testcase_21 AC 140 ms
11,256 KB
testcase_22 AC 137 ms
11,264 KB
testcase_23 AC 143 ms
11,120 KB
testcase_24 WA -
testcase_25 AC 151 ms
11,032 KB
testcase_26 AC 242 ms
11,136 KB
testcase_27 AC 240 ms
11,212 KB
testcase_28 AC 226 ms
11,220 KB
testcase_29 AC 241 ms
11,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:33:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   33 |         scanf("%lld", &n);
      |         ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <math.h>
#include <string.h>
#include <stdio.h>

char prime[10001000];

void getPrime(int p){
	int i,j;
	for(i=0;i<p;i++){
		prime[i] = 1;
		if((i&1) == 0){
			prime[i] = 0;
		}
	}
	
	prime[0]=0;
	prime[1]=1;
	prime[2]=1;
	
	for(i=3;i*i<=p;i+=2){
		for(j=i+i;j<=p;j+=i){
			prime[j]=0;
		}
	}
}

int main(void){
	long long int n;
	int i, p = 10000000 + 1;
	int yes=0;
	getPrime(p);
	
	scanf("%lld", &n);
	
	for(i=1;i<p;i++){
		if(n%i == 0){
			if(prime[i]==1){
				
			}else{
				yes = 1;
				break;
			}
		}
	}
	
	if(yes == 1){
		printf("YES\n");
	}else{
		printf("NO\n");
	}
	
	return 0;
}
0