結果

問題 No.378 名声値を稼ごう
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 22:54:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 2,780 ms
コンパイル使用メモリ 73,976 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-06-30 01:04:01
合計ジャッジ時間 3,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,176 KB
testcase_01 AC 109 ms
41,280 KB
testcase_02 AC 110 ms
41,340 KB
testcase_03 AC 115 ms
41,024 KB
testcase_04 AC 107 ms
41,428 KB
testcase_05 AC 107 ms
41,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Meiseichi {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		long N = s.nextLong();
		s.close();
		long copy = N;
		long sum = 0;
		while(N != 0){
			N /= 2;
			sum += N;
		}
		System.out.println(copy-sum);

	}

}
0