結果

問題 No.36 素数が嫌い!
ユーザー tookunn_1213tookunn_1213
提出日時 2015-09-05 21:14:51
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 313,724 KB
最終ジャッジ日時 2024-07-19 03:58:02
合計ジャッジ時間 8,286 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
148,716 KB
testcase_01 AC 282 ms
245,576 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 11 ms
6,944 KB
testcase_04 AC 12 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 16 ms
7,168 KB
testcase_08 AC 12 ms
6,944 KB
testcase_09 AC 12 ms
6,940 KB
testcase_10 AC 12 ms
6,944 KB
testcase_11 AC 432 ms
106,088 KB
testcase_12 AC 1,315 ms
313,724 KB
testcase_13 AC 1,293 ms
312,844 KB
testcase_14 AC 225 ms
197,080 KB
testcase_15 AC 11 ms
6,940 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 11 ms
6,940 KB
testcase_18 AC 11 ms
6,940 KB
testcase_19 AC 143 ms
125,852 KB
testcase_20 AC 347 ms
312,844 KB
testcase_21 AC 272 ms
240,780 KB
testcase_22 AC 279 ms
248,080 KB
testcase_23 AC 171 ms
151,432 KB
testcase_24 AC 190 ms
167,812 KB
testcase_25 AC 185 ms
164,968 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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