結果

問題 No.2795 Perfect Number
ユーザー rlangevinrlangevin
提出日時 2024-06-29 08:23:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 80,972 KB
最終ジャッジ日時 2024-06-29 08:23:33
合計ジャッジ時間 4,015 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
80,972 KB
testcase_01 AC 74 ms
79,736 KB
testcase_02 AC 73 ms
80,368 KB
testcase_03 AC 72 ms
80,736 KB
testcase_04 AC 74 ms
79,348 KB
testcase_05 AC 82 ms
80,932 KB
testcase_06 AC 72 ms
80,328 KB
testcase_07 AC 73 ms
79,988 KB
testcase_08 AC 73 ms
80,668 KB
testcase_09 AC 76 ms
79,696 KB
testcase_10 AC 77 ms
79,028 KB
testcase_11 AC 77 ms
79,684 KB
testcase_12 AC 77 ms
79,008 KB
testcase_13 AC 77 ms
80,684 KB
testcase_14 AC 77 ms
79,084 KB
testcase_15 AC 76 ms
79,224 KB
testcase_16 AC 77 ms
79,344 KB
testcase_17 AC 76 ms
78,892 KB
testcase_18 AC 72 ms
79,432 KB
testcase_19 AC 74 ms
80,752 KB
testcase_20 AC 77 ms
80,316 KB
testcase_21 AC 75 ms
79,992 KB
testcase_22 AC 74 ms
79,764 KB
testcase_23 AC 74 ms
79,072 KB
testcase_24 AC 74 ms
79,920 KB
testcase_25 AC 74 ms
79,452 KB
testcase_26 AC 73 ms
79,028 KB
testcase_27 AC 72 ms
80,392 KB
testcase_28 AC 71 ms
79,404 KB
testcase_29 AC 72 ms
79,152 KB
testcase_30 AC 73 ms
79,652 KB
testcase_31 AC 74 ms
79,028 KB
testcase_32 AC 75 ms
79,648 KB
testcase_33 AC 76 ms
79,472 KB
testcase_34 AC 74 ms
79,940 KB
testcase_35 AC 75 ms
80,152 KB
testcase_36 AC 73 ms
80,592 KB
testcase_37 AC 77 ms
79,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil, sqrt
def Sieve(n):
    lst = [True] * (n + 1)
    lst[0] = lst[1] = False
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return S

SS = Sieve(10**6 + 5)

S = set()
for i in range(2, 20):
    if 2**i - 1 in SS:
        S.add(2**(i-1) * (2**i - 1))
print("Yes") if int(input()) in S else print("No")
0