結果
| 問題 |
No.36 素数が嫌い!
|
| コンテスト | |
| ユーザー |
tookunn_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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 20 WA * 6 |
ソースコード
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'
tookunn_1213