結果
問題 | No.36 素数が嫌い! |
ユーザー | Ryuto |
提出日時 | 2018-03-19 18:53:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 322 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 62,848 KB |
最終ジャッジ日時 | 2024-06-10 23:32:43 |
合計ジャッジ時間 | 9,764 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,968 KB |
testcase_01 | AC | 41 ms
57,472 KB |
testcase_02 | AC | 36 ms
51,712 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | TLE | - |
testcase_08 | AC | 35 ms
52,096 KB |
testcase_09 | AC | 35 ms
51,968 KB |
testcase_10 | AC | 34 ms
51,968 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#!/usr/bin/env python N = int(input()) if 1 <= N <= 3: print('NO') quit() ans = 0 tmp = N while tmp % 2 == 0: ans += 1 tmp = tmp / 2 for i in range(3, N, 2): if ans >= 2: print('YES') quit() elif N % i == 0: ans += 1 if ans >= 2: print('YES') else: print('NO')