結果

問題 No.378 名声値を稼ごう
ユーザー yumechiyumechi
提出日時 2016-08-06 01:08:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 53,288 KB
最終ジャッジ日時 2024-06-29 14:13:44
合計ジャッジ時間 829 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,136 KB
testcase_01 AC 35 ms
52,864 KB
testcase_02 AC 38 ms
53,024 KB
testcase_03 AC 37 ms
53,288 KB
testcase_04 AC 35 ms
51,952 KB
testcase_05 AC 35 ms
52,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    arr, nc = [], n
    while nc > 0:
        arr.append(nc)
        nc //= 2
    arr.append(0)
    standardscore = sum(arr)
    print(arr[0] + arr[1] * 2 + (arr[0] % 2 == 1 if 1 else 0) - standardscore)

if __name__=="__main__":
    solve()
0