結果

問題 No.589 Counting Even
ユーザー GrenacheGrenache
提出日時 2017-11-04 13:48:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 4,039 ms
コンパイル使用メモリ 74,692 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-11-23 17:53:40
合計ジャッジ時間 8,519 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,332 KB
testcase_01 AC 125 ms
54,164 KB
testcase_02 AC 116 ms
53,764 KB
testcase_03 AC 122 ms
54,372 KB
testcase_04 AC 124 ms
53,988 KB
testcase_05 AC 128 ms
54,132 KB
testcase_06 AC 138 ms
54,256 KB
testcase_07 AC 131 ms
54,108 KB
testcase_08 AC 128 ms
54,008 KB
testcase_09 AC 127 ms
54,436 KB
testcase_10 AC 133 ms
53,940 KB
testcase_11 AC 134 ms
54,016 KB
testcase_12 AC 113 ms
52,616 KB
testcase_13 AC 122 ms
53,788 KB
testcase_14 AC 128 ms
54,076 KB
testcase_15 AC 108 ms
53,140 KB
testcase_16 AC 132 ms
54,280 KB
testcase_17 AC 128 ms
54,092 KB
testcase_18 AC 111 ms
53,076 KB
testcase_19 AC 126 ms
53,872 KB
testcase_20 AC 127 ms
54,152 KB
testcase_21 AC 120 ms
53,932 KB
testcase_22 AC 114 ms
53,072 KB
testcase_23 AC 122 ms
54,164 KB
testcase_24 AC 126 ms
54,028 KB
testcase_25 AC 124 ms
54,072 KB
testcase_26 AC 131 ms
53,868 KB
testcase_27 AC 125 ms
53,932 KB
testcase_28 AC 124 ms
53,712 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;
		} else if (n == 1) {
			return 2;
		}

		long tmp = 2;
		while (n >= tmp * 2) {
			tmp *= 2;
		}

		return 2 * cntOdd(n - tmp);
	}

	// ---------------------------------------------------
	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