結果

問題 No.36 素数が嫌い!
ユーザー subsnsubsn
提出日時 2023-06-12 17:17:07
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 792 bytes
コンパイル時間 1,359 ms
コンパイル使用メモリ 28,528 KB
実行使用メモリ 5,772 KB
最終ジャッジ日時 2023-09-02 11:47:15
合計ジャッジ時間 8,580 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 0 ms
4,380 KB
testcase_02 AC 1 ms
4,388 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <malloc.h>
#include <stdint.h>

char str[60000];
int str_len = 0;

/// <summary>
/// 入力された数字を返す
/// </summary>
/// <returns></returns>
int ReadNum() {
	int negate = 0;
	char c = getchar();
	int num = 0;
	int numCnt = 0;
	while (c != '\n') {
		if (c == '-') {
			negate = 1;
		}
		else {
			num = num * 10 + c - '0';
		}

		c = getchar();
	}
	if (negate == 1) {
		num *= -1;
	}
	return num;
}

int isPrime(uint64_t num) {
	for (uint64_t i = 2;i < num;i++) {
		if (num % i == 0) return 0;
	}
	return 1;
}

int isUseful(uint64_t num) {
	for (uint64_t i = 2;i < num;i++) {
		if (isPrime(i));
		if (num % i == 0) return 1;
	}
	return 0;
}

int main()
{
	int num = ReadNum();
	if (isUseful(num)) {
		printf("YES\n");
	}
	else {
		printf("NO\n");
	}
}
0