結果
問題 |
No.36 素数が嫌い!
|
ユーザー |
|
提出日時 | 2021-08-07 16:56:19 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 210 bytes |
コンパイル時間 | 236 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 16,128 KB |
最終ジャッジ日時 | 2024-09-18 19:34:25 |
合計ジャッジ時間 | 6,875 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 4 |
other | AC * 5 TLE * 1 -- * 20 |
ソースコード
N = int(input()) result = 'NO' if N == 0 or N == 1 or N == 2 or N == 3: result = 'NO' else: for i in range(4, N // 2): if N % i == 0: result = 'YES' break print(result)