結果

問題 No.589 Counting Even
ユーザー GrenacheGrenache
提出日時 2017-11-04 14:08:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 3,888 ms
コンパイル使用メモリ 74,532 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-11-23 17:54:17
合計ジャッジ時間 8,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,988 KB
testcase_01 AC 112 ms
52,816 KB
testcase_02 AC 126 ms
54,540 KB
testcase_03 AC 112 ms
53,076 KB
testcase_04 AC 125 ms
54,180 KB
testcase_05 AC 127 ms
53,836 KB
testcase_06 AC 129 ms
54,280 KB
testcase_07 AC 160 ms
54,084 KB
testcase_08 AC 162 ms
54,220 KB
testcase_09 AC 159 ms
54,316 KB
testcase_10 AC 157 ms
54,000 KB
testcase_11 AC 158 ms
54,164 KB
testcase_12 AC 113 ms
53,136 KB
testcase_13 AC 123 ms
54,224 KB
testcase_14 AC 126 ms
54,132 KB
testcase_15 AC 130 ms
54,116 KB
testcase_16 AC 130 ms
54,324 KB
testcase_17 AC 114 ms
53,052 KB
testcase_18 AC 125 ms
54,276 KB
testcase_19 AC 126 ms
54,160 KB
testcase_20 AC 127 ms
53,748 KB
testcase_21 AC 130 ms
54,180 KB
testcase_22 AC 129 ms
54,152 KB
testcase_23 AC 131 ms
54,016 KB
testcase_24 AC 130 ms
54,084 KB
testcase_25 AC 125 ms
54,184 KB
testcase_26 AC 124 ms
53,804 KB
testcase_27 AC 124 ms
53,948 KB
testcase_28 AC 126 ms
54,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder589_1 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		long n = sc.nextLong();

		pr.println(n + 1 - cntOdd(n));
	}

	private static long cntOdd(long n) {
		if (n == 0) {
			return 1;
		}

		return 2 * cntOdd(Long.highestOneBit(n) ^ n);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0