結果

問題 No.2782 メルセンヌ数総乗
ユーザー イルカイルカ
提出日時 2024-06-14 22:20:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 58,828 KB
最終ジャッジ日時 2024-06-14 22:20:11
合計ジャッジ時間 1,947 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,660 KB
testcase_01 AC 37 ms
52,736 KB
testcase_02 AC 37 ms
52,724 KB
testcase_03 AC 41 ms
58,828 KB
testcase_04 AC 38 ms
52,772 KB
testcase_05 AC 37 ms
52,192 KB
testcase_06 AC 37 ms
52,792 KB
testcase_07 AC 38 ms
53,008 KB
testcase_08 AC 41 ms
52,300 KB
testcase_09 AC 39 ms
52,464 KB
testcase_10 AC 38 ms
52,528 KB
testcase_11 AC 39 ms
52,468 KB
testcase_12 AC 40 ms
58,336 KB
testcase_13 AC 36 ms
52,952 KB
testcase_14 AC 41 ms
58,788 KB
testcase_15 AC 42 ms
58,084 KB
testcase_16 AC 37 ms
53,168 KB
testcase_17 AC 43 ms
58,536 KB
testcase_18 AC 36 ms
53,184 KB
testcase_19 AC 40 ms
58,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
def prime_factorize(n):
    a = []
    while n % 2 == 0:
        a.append(2)
        n //= 2
    f = 3
    while f * f <= n:
        if n % f == 0:
            a.append(f)
            n //= f
        else:
            f += 2
    if n != 1:
        a.append(n)
    return a
factor = []
for i in range(2,N+1):
    factor += prime_factorize(2**i-1)
factor_next = prime_factorize(2**(N+1)-1)
for f in factor_next:
    if f not in factor:
        print("No")
        exit()
print("Yes")
0