結果

問題 No.378 名声値を稼ごう
ユーザー Pump0129Pump0129
提出日時 2018-03-28 01:48:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 74,996 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-06-30 05:40:39
合計ジャッジ時間 3,070 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,852 KB
testcase_01 AC 134 ms
54,116 KB
testcase_02 AC 128 ms
53,784 KB
testcase_03 AC 112 ms
53,920 KB
testcase_04 AC 105 ms
52,832 KB
testcase_05 AC 105 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no378;

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
import java.util.stream.Collectors;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);

        long exp = scan.nextLong();
        long total_exp = exp;
        long max_exp = exp * 2;

        while (exp != 0) {
            total_exp += exp/2;
            exp /= 2;
        }

        System.out.println(max_exp - total_exp);
    }
}
0