結果

問題 No.378 名声値を稼ごう
ユーザー mokraimokrai
提出日時 2017-11-13 14:57:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 407 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-03 20:25:05
合計ジャッジ時間 757 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def main():
    N = int(input())
    #print("2 * N", 2 * N)
    #print("get_nomal_point(N)", get_nomal_point(N))
    print(2 * N - get_nomal_point(N))

def get_nomal_point(value):
    point = 0
    while value > 0:
        point += value
        value = math.floor(value / 2)
        #print("point", point)
        #print("value", value)
    return point

if __name__ == '__main__':
    main()
0