結果

問題 No.378 名声値を稼ごう
ユーザー sougo002sougo002
提出日時 2016-06-30 23:34:05
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 412 bytes
コンパイル時間 3,394 ms
コンパイル使用メモリ 76,932 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-10-11 23:56:36
合計ジャッジ時間 4,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.Scanner;
public class TGMain {
    
    public static void main(String[] args){
        int a, b, c, N;
        boolean Flg = false;
        int ans = 0;
        Scanner sc = new Scanner(System.in);
        N = sc.nextInt();
        int max = N+N;
        while(N != 0){
            
            ans += N;
            N /= 2;
            
        }
        System.out.println(max - ans);
    }
}
0