結果

問題 No.378 名声値を稼ごう
ユーザー GoyotanGoyotan
提出日時 2016-06-20 18:13:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 3,842 ms
コンパイル使用メモリ 76,456 KB
実行使用メモリ 41,756 KB
最終ジャッジ日時 2024-06-29 13:59:34
合計ジャッジ時間 4,630 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,756 KB
testcase_01 AC 123 ms
41,720 KB
testcase_02 AC 112 ms
41,080 KB
testcase_03 AC 126 ms
41,160 KB
testcase_04 AC 127 ms
41,184 KB
testcase_05 AC 129 ms
41,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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