結果

問題 No.378 名声値を稼ごう
ユーザー GrenacheGrenache
提出日時 2016-06-17 22:22:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 2,759 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-06-29 13:52:49
合計ジャッジ時間 3,926 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,144 KB
testcase_01 AC 114 ms
40,332 KB
testcase_02 AC 115 ms
40,172 KB
testcase_03 AC 102 ms
41,484 KB
testcase_04 AC 111 ms
41,180 KB
testcase_05 AC 104 ms
40,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main_yukicoder378 {

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

        long n = sc.nextLong();

        long tmp = n;
        long ret = 0;
        while (tmp > 0) {
        	ret += tmp;
        	tmp /= 2;
        }

        System.out.println(Math.abs(2 * n - ret));

        sc.close();
    }
}
0