結果
問題 | No.354 メルセンヌ素数 |
ユーザー | bellangeldindon |
提出日時 | 2019-05-16 16:56:07 |
言語 | Python2 (2.7.18) |
結果 |
TLE
|
実行時間 | - |
コード長 | 198 bytes |
コンパイル時間 | 100 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 16,032 KB |
最終ジャッジ日時 | 2024-09-17 05:34:09 |
合計ジャッジ時間 | 2,883 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
13,764 KB |
testcase_01 | AC | 11 ms
6,940 KB |
testcase_02 | AC | 11 ms
6,940 KB |
testcase_03 | AC | 11 ms
6,940 KB |
testcase_04 | AC | 14 ms
6,940 KB |
testcase_05 | AC | 24 ms
6,940 KB |
testcase_06 | AC | 236 ms
6,944 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
def pow2(n): ans = 1 for i in range(0, n): ans *= 2 return ans def countone(n): m = n cnt = 0 while m != 0: cnt += m%2 m /= 2 return cnt p = int(raw_input()) print countone(pow2(p)-1)