結果

問題 No.378 名声値を稼ごう
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-10 01:59:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 1,934 ms
コンパイル使用メモリ 75,664 KB
実行使用メモリ 54,160 KB
最終ジャッジ日時 2024-06-29 20:05:13
合計ジャッジ時間 3,251 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,004 KB
testcase_01 AC 127 ms
53,836 KB
testcase_02 AC 129 ms
53,944 KB
testcase_03 AC 129 ms
53,760 KB
testcase_04 AC 130 ms
54,072 KB
testcase_05 AC 129 ms
54,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long N = sc.nextLong();
        long sumA = 0;
        long sumB = N;
        N=N/2;
        while(N!=0){
            sumA = sumA + N;
            N=N/2;
        }
        System.out.println(sumB-sumA);
    }
}
0