結果

問題 No.354 メルセンヌ素数
ユーザー naotest2naotest2
提出日時 2017-05-24 12:14:04
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 165 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 84,620 KB
最終ジャッジ日時 2024-09-19 16:04:10
合計ジャッジ時間 3,706 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
19,104 KB
testcase_01 AC 76 ms
12,160 KB
testcase_02 AC 76 ms
12,032 KB
testcase_03 AC 77 ms
12,160 KB
testcase_04 AC 83 ms
12,416 KB
testcase_05 AC 88 ms
12,928 KB
testcase_06 AC 119 ms
20,608 KB
testcase_07 AC 450 ms
51,328 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

P=gets.chomp.to_i

def merusennu(p)
  c = 0
  num = 2 ** p - 1
  while num > 0
    c += 1 if num % 2 == 1
    num = num >> 1
  end
  return c
end

puts merusennu(P)
0