結果

問題 No.354 メルセンヌ素数
ユーザー Fullmoon85072Fullmoon85072
提出日時 2020-08-06 23:05:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 119 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 289,080 KB
最終ジャッジ日時 2024-09-22 02:13:04
合計ジャッジ時間 6,451 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 44 ms
57,344 KB
testcase_05 AC 44 ms
57,728 KB
testcase_06 AC 45 ms
58,496 KB
testcase_07 AC 51 ms
63,744 KB
testcase_08 AC 76 ms
79,360 KB
testcase_09 AC 126 ms
92,928 KB
testcase_10 AC 530 ms
205,568 KB
testcase_11 AC 788 ms
219,904 KB
testcase_12 TLE -
testcase_13 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

p = int(input())
sosuu = pow(2, p) - 1

count = 0
for x in bin(sosuu):
    if x == '1':
        count += 1
print(count)
0