結果
| 問題 |
No.354 メルセンヌ素数
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-12-09 17:07:04 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 163 bytes |
| コンパイル時間 | 89 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 48,400 KB |
| 最終ジャッジ日時 | 2024-11-30 05:23:09 |
| 合計ジャッジ時間 | 15,240 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 6 TLE * 7 |
ソースコード
p=int(input())
a=(2**p)-1
array=[]
num=""
while a!=0:
array.append(a%2)
a//=2
for i in range(len(array)):
num+=str(array[i])
print(num.count("1"))