結果

問題 No.378 名声値を稼ごう
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-10 01:52:55
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 362 bytes
コンパイル時間 2,178 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-05-04 00:30:46
合計ジャッジ時間 3,966 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.*;

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