結果

問題 No.36 素数が嫌い!
ユーザー tookunn_1213tookunn_1213
提出日時 2015-09-05 21:15:37
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 168 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 7,200 KB
実行使用メモリ 313,676 KB
最終ジャッジ日時 2024-07-19 04:10:44
合計ジャッジ時間 7,926 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
148,564 KB
testcase_01 AC 261 ms
245,504 KB
testcase_02 AC 11 ms
6,400 KB
testcase_03 WA -
testcase_04 AC 11 ms
6,272 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 14 ms
7,040 KB
testcase_08 AC 10 ms
6,400 KB
testcase_09 AC 10 ms
6,944 KB
testcase_10 AC 10 ms
6,912 KB
testcase_11 AC 397 ms
106,092 KB
testcase_12 AC 1,213 ms
313,676 KB
testcase_13 AC 1,196 ms
312,776 KB
testcase_14 AC 205 ms
196,884 KB
testcase_15 AC 11 ms
6,400 KB
testcase_16 AC 10 ms
6,272 KB
testcase_17 AC 10 ms
6,400 KB
testcase_18 AC 10 ms
6,400 KB
testcase_19 AC 132 ms
125,772 KB
testcase_20 AC 320 ms
312,744 KB
testcase_21 AC 254 ms
240,852 KB
testcase_22 AC 262 ms
248,300 KB
testcase_23 AC 165 ms
151,292 KB
testcase_24 AC 177 ms
167,808 KB
testcase_25 AC 179 ms
165,120 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.ceil(math.sqrt(N)))
for i in range(2,L):
	if N % i == 0:
		f = True
		break
if f:
	print 'YES'
else:
	print 'NO'
0