結果

問題 No.2782 メルセンヌ数総乗
ユーザー 👑 p-adicp-adic
提出日時 2024-02-26 21:40:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 93 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,984 KB
実行使用メモリ 53,196 KB
最終ジャッジ日時 2024-09-29 11:45:59
合計ジャッジ時間 1,562 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,004 KB
testcase_01 AC 35 ms
52,872 KB
testcase_02 AC 34 ms
52,892 KB
testcase_03 AC 35 ms
52,924 KB
testcase_04 AC 33 ms
53,032 KB
testcase_05 AC 35 ms
51,952 KB
testcase_06 AC 34 ms
52,368 KB
testcase_07 AC 33 ms
51,752 KB
testcase_08 AC 34 ms
52,952 KB
testcase_09 AC 33 ms
52,548 KB
testcase_10 AC 33 ms
52,068 KB
testcase_11 AC 33 ms
52,804 KB
testcase_12 AC 35 ms
52,656 KB
testcase_13 AC 34 ms
52,116 KB
testcase_14 AC 32 ms
51,944 KB
testcase_15 AC 32 ms
53,196 KB
testcase_16 AC 33 ms
52,600 KB
testcase_17 AC 33 ms
51,692 KB
testcase_18 AC 32 ms
52,220 KB
testcase_19 AC 33 ms
52,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
a=1
for i in range(2,N+1):a=a*((1<<i)-1)%((1<<(N+1))-1)
print("YNeos"[a>0::2])
0