結果

問題 No.378 名声値を稼ごう
ユーザー AREIDO2AREIDO2
提出日時 2016-08-23 06:17:54
言語 Python2
(2.7.18)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-06-29 14:15:03
合計ジャッジ時間 466 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,272 KB
testcase_01 AC 8 ms
6,400 KB
testcase_02 AC 8 ms
6,272 KB
testcase_03 AC 9 ms
6,272 KB
testcase_04 AC 9 ms
6,272 KB
testcase_05 AC 8 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

N = int(raw_input())
sum1 = N
calc1 = N
sum2 = N * 2
while calc1 != 0:
     calc1 = int(calc1 / 2)
     sum1 += calc1

result = sum2 - sum1

print result
0