結果

問題 No.354 メルセンヌ素数
ユーザー a_tena_ten
提出日時 2016-04-01 22:45:28
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 205 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 61,856 KB
最終ジャッジ日時 2024-10-02 09:17:21
合計ジャッジ時間 4,715 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
13,632 KB
testcase_01 AC 12 ms
6,816 KB
testcase_02 AC 11 ms
6,820 KB
testcase_03 AC 11 ms
6,820 KB
testcase_04 AC 12 ms
6,816 KB
testcase_05 AC 13 ms
6,820 KB
testcase_06 AC 21 ms
6,816 KB
testcase_07 AC 52 ms
6,816 KB
testcase_08 AC 369 ms
8,076 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf-8

def pow(a,n):
	res=1
	while n:
		if n%2==1:
			res*=a
		a*=a
		n/=2
	return res	
		
		
p=input()

ans=pow(2,p)-1

ans_bin=bin(ans)

prime=0
for i in ans_bin[2:]:
	prime+=int(i)
	
print prime
0