結果
問題 | No.354 メルセンヌ素数 |
ユーザー | Python00391232 |
提出日時 | 2016-04-26 02:46:31 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 316 bytes |
コンパイル時間 | 82 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 251,336 KB |
最終ジャッジ日時 | 2024-10-04 15:51:28 |
合計ジャッジ時間 | 4,964 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
17,440 KB |
testcase_01 | AC | 24 ms
10,624 KB |
testcase_02 | AC | 25 ms
10,752 KB |
testcase_03 | AC | 25 ms
10,752 KB |
testcase_04 | AC | 27 ms
10,624 KB |
testcase_05 | AC | 28 ms
10,624 KB |
testcase_06 | AC | 37 ms
11,008 KB |
testcase_07 | AC | 70 ms
12,032 KB |
testcase_08 | AC | 432 ms
23,340 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
p = int(input()) mel = 2**p - 1 mel_bit = bin(mel) mel_lists = list(mel_bit) def num_Change(n): try: return int(n) except Exception: return 0 sets_mel = [] for i in range(len(mel_lists)): sets_mel.append(num_Change(mel_lists[i])) sums = 0 for i in range(len(sets_mel)): sums += sets_mel[i] print(sums)