結果

問題 No.36 素数が嫌い!
ユーザー tonnnura172tonnnura172
提出日時 2020-05-12 13:27:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,047 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 86,592 KB
最終ジャッジ日時 2024-09-13 11:07:00
合計ジャッジ時間 35,347 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 799 ms
46,052 KB
testcase_01 WA -
testcase_02 AC 34 ms
11,264 KB
testcase_03 AC 34 ms
11,136 KB
testcase_04 AC 34 ms
11,264 KB
testcase_05 AC 41 ms
11,392 KB
testcase_06 AC 41 ms
11,520 KB
testcase_07 AC 42 ms
11,520 KB
testcase_08 AC 36 ms
11,136 KB
testcase_09 AC 36 ms
11,392 KB
testcase_10 AC 36 ms
11,264 KB
testcase_11 AC 1,095 ms
35,700 KB
testcase_12 AC 3,410 ms
86,592 KB
testcase_13 AC 3,532 ms
86,456 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 34 ms
11,136 KB
testcase_17 AC 33 ms
11,136 KB
testcase_18 AC 34 ms
11,264 KB
testcase_19 AC 682 ms
40,608 KB
testcase_20 AC 1,936 ms
86,344 KB
testcase_21 AC 1,302 ms
68,856 KB
testcase_22 AC 1,424 ms
70,636 KB
testcase_23 AC 800 ms
46,908 KB
testcase_24 WA -
testcase_25 AC 873 ms
50,096 KB
testcase_26 AC 2,047 ms
56,984 KB
testcase_27 AC 2,900 ms
75,824 KB
testcase_28 AC 2,082 ms
56,064 KB
testcase_29 AC 3,322 ms
83,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, re
from collections import deque, defaultdict, Counter
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians, gcd, log
from itertools import accumulate, permutations, combinations, product
from operator import itemgetter, mul, add
from copy import deepcopy
from string import ascii_lowercase, ascii_uppercase, digits
from bisect import bisect, bisect_left
from heapq import heappush, heappop
from functools import reduce, lru_cache
def input(): return sys.stdin.readline().strip()
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
def ZIP(n): return zip(*(MAP() for _ in range(n)))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
mod = 10 ** 9 + 7

def sieve(n):
	s = [True] * n
	for x in range(2, int(n ** 0.5) + 1):
		if s[x]:
			for i in range(x + x, n, x):
				s[i] = False
	return s

N = INT()
is_prime = sieve(int(N**0.5)+1)

for i in range(2, int(N**0.5)+1):
	if N%i == 0 and not is_prime[i]:
		print("YES")
		break
else:
	print("NO")
0