結果

問題 No.378 名声値を稼ごう
ユーザー harhogefooharhogefoo
提出日時 2016-10-14 08:56:54
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 103 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-05-01 22:36:34
合計ジャッジ時間 3,675 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
17,536 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i

x = n
t = n
loop do
  x += t / 2
  t = t / 2
  break if t == 1
end

y = n * 2
puts y - x
0