結果

問題 No.36 素数が嫌い!
ユーザー tookunn_1213tookunn_1213
提出日時 2015-09-05 21:17:25
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 159 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 313,984 KB
最終ジャッジ日時 2024-07-19 04:12:21
合計ジャッジ時間 10,551 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
148,840 KB
testcase_01 AC 293 ms
245,696 KB
testcase_02 AC 11 ms
6,528 KB
testcase_03 AC 10 ms
6,528 KB
testcase_04 AC 11 ms
6,656 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 19 ms
7,296 KB
testcase_08 AC 11 ms
6,656 KB
testcase_09 AC 11 ms
7,296 KB
testcase_10 AC 12 ms
7,168 KB
testcase_11 AC 769 ms
106,496 KB
testcase_12 AC 2,334 ms
313,984 KB
testcase_13 AC 2,272 ms
312,960 KB
testcase_14 AC 247 ms
197,248 KB
testcase_15 AC 10 ms
6,400 KB
testcase_16 AC 10 ms
6,528 KB
testcase_17 AC 10 ms
6,528 KB
testcase_18 AC 10 ms
6,400 KB
testcase_19 AC 157 ms
126,208 KB
testcase_20 AC 370 ms
312,960 KB
testcase_21 AC 293 ms
241,024 KB
testcase_22 AC 319 ms
248,448 KB
testcase_23 AC 187 ms
151,680 KB
testcase_24 AC 205 ms
167,936 KB
testcase_25 AC 201 ms
165,376 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = long(raw_input())
f = False
L = long(math.sqrt(N))
for i in range(2,L):
	if N % i == 0:
		f = True
		break
if f:
	print 'YES'
else:
	print 'NO'
0