結果

問題 No.2782 メルセンヌ数総乗
ユーザー ShirotsumeShirotsume
提出日時 2024-06-14 21:24:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 56,840 KB
最終ジャッジ日時 2024-06-14 21:24:59
合計ジャッジ時間 2,212 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,656 KB
testcase_01 AC 45 ms
55,936 KB
testcase_02 AC 45 ms
55,312 KB
testcase_03 AC 45 ms
55,828 KB
testcase_04 AC 45 ms
56,592 KB
testcase_05 AC 48 ms
56,000 KB
testcase_06 AC 45 ms
56,412 KB
testcase_07 AC 45 ms
55,848 KB
testcase_08 AC 45 ms
56,700 KB
testcase_09 AC 45 ms
55,452 KB
testcase_10 AC 46 ms
56,532 KB
testcase_11 AC 49 ms
56,788 KB
testcase_12 AC 45 ms
56,160 KB
testcase_13 AC 44 ms
55,400 KB
testcase_14 AC 45 ms
55,096 KB
testcase_15 AC 45 ms
55,460 KB
testcase_16 AC 44 ms
55,784 KB
testcase_17 AC 45 ms
55,520 KB
testcase_18 AC 45 ms
56,840 KB
testcase_19 AC 44 ms
56,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n = ii()
a = 1
for i in range(2, n + 1):
    a *= pow(2, i) - 1

if a % (pow(2, n + 1) - 1) == 0:
    print('Yes')
else:
    print('No')
0