結果

問題 No.354 メルセンヌ素数
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2018-03-12 21:08:29
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 72 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 832,628 KB
最終ジャッジ日時 2024-11-14 05:52:33
合計ジャッジ時間 7,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
18,980 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 86 ms
12,288 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 90 ms
12,672 KB
testcase_06 AC 109 ms
13,440 KB
testcase_07 AC 124 ms
19,840 KB
testcase_08 AC 414 ms
78,720 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 RE -
testcase_12 RE -
testcase_13 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

p = gets.to_i
puts (2**p - 1).to_s(2).chars.select { |c| c == '1' }.size
0