結果

問題 No.378 名声値を稼ごう
ユーザー GoyotanGoyotan
提出日時 2016-06-20 18:18:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 3,173 ms
コンパイル使用メモリ 73,980 KB
実行使用メモリ 54,584 KB
最終ジャッジ日時 2024-06-29 14:00:24
合計ジャッジ時間 4,505 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,584 KB
testcase_01 AC 129 ms
53,816 KB
testcase_02 AC 113 ms
52,648 KB
testcase_03 AC 128 ms
54,104 KB
testcase_04 AC 113 ms
54,248 KB
testcase_05 AC 130 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class LoL {
	public static void main(String[] args) {
		long k = 0;
		long  l = 0;
		int t = 0;
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		k = N;
		long by = N*2;
		while(k!=0){
			l+=k;
			k = k/2;
		}
		t = (int) ((int)by - l);
		System.out.println(t);
	}
}
0