結果

問題 No.589 Counting Even
ユーザー uafr_csuafr_cs
提出日時 2017-11-03 23:05:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 41,368 KB
最終ジャッジ日時 2024-05-02 20:33:46
合計ジャッジ時間 7,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,368 KB
testcase_01 AC 132 ms
41,000 KB
testcase_02 AC 129 ms
41,260 KB
testcase_03 AC 121 ms
40,556 KB
testcase_04 AC 132 ms
40,932 KB
testcase_05 AC 132 ms
41,036 KB
testcase_06 AC 134 ms
41,064 KB
testcase_07 AC 136 ms
41,036 KB
testcase_08 AC 136 ms
41,068 KB
testcase_09 AC 134 ms
41,112 KB
testcase_10 AC 134 ms
41,124 KB
testcase_11 AC 141 ms
41,144 KB
testcase_12 AC 139 ms
41,216 KB
testcase_13 AC 134 ms
41,008 KB
testcase_14 AC 139 ms
41,224 KB
testcase_15 AC 132 ms
41,064 KB
testcase_16 AC 136 ms
41,320 KB
testcase_17 AC 132 ms
40,948 KB
testcase_18 AC 130 ms
41,064 KB
testcase_19 AC 133 ms
40,996 KB
testcase_20 AC 130 ms
41,036 KB
testcase_21 AC 137 ms
41,140 KB
testcase_22 AC 126 ms
41,240 KB
testcase_23 AC 129 ms
40,944 KB
testcase_24 AC 131 ms
40,680 KB
testcase_25 AC 116 ms
39,784 KB
testcase_26 AC 119 ms
39,904 KB
testcase_27 AC 130 ms
41,320 KB
testcase_28 AC 139 ms
40,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long solve(long n){
		if(n == 0){ 
			return 0;
		}else if(n == 1){
			return 0;
		}else if(n % 2 == 0){
			return (n / 2) + solve(n / 2);
		}else{
			return solve(n / 2) * 2;
		}
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long N = sc.nextLong();
		
		System.out.println(solve(N));
	}
}
0