結果
問題 | No.36 素数が嫌い! |
ユーザー | Mint |
提出日時 | 2015-05-30 22:38:24 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 187 bytes |
コンパイル時間 | 237 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-07-06 12:49:40 |
合計ジャッジ時間 | 17,329 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 9 ms
6,528 KB |
testcase_03 | AC | 9 ms
6,400 KB |
testcase_04 | AC | 9 ms
6,400 KB |
testcase_05 | AC | 14 ms
6,400 KB |
testcase_06 | AC | 12 ms
6,528 KB |
testcase_07 | AC | 12 ms
6,400 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 298 ms
6,400 KB |
testcase_12 | AC | 827 ms
6,528 KB |
testcase_13 | AC | 819 ms
6,400 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 9 ms
6,528 KB |
testcase_17 | AC | 9 ms
6,400 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 912 ms
6,272 KB |
testcase_27 | AC | 728 ms
6,272 KB |
testcase_28 | AC | 903 ms
6,400 KB |
testcase_29 | AC | 810 ms
6,400 KB |
ソースコード
import math n = input() for i in xrange(2, (int)(math.sqrt(n))): if n % i == 0: for j in xrange(2,(int)(math.sqrt(n/i))): if j % (n/i) == 0: print "YES" exit() print "NO"