結果

問題 No.589 Counting Even
ユーザー 37zigen37zigen
提出日時 2017-11-09 03:26:40
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 839 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 75,408 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-05-03 08:06:37
合計ジャッジ時間 7,647 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,340 KB
testcase_01 AC 141 ms
41,112 KB
testcase_02 AC 140 ms
41,360 KB
testcase_03 AC 137 ms
41,376 KB
testcase_04 AC 134 ms
41,228 KB
testcase_05 AC 130 ms
41,136 KB
testcase_06 AC 134 ms
41,368 KB
testcase_07 AC 133 ms
41,272 KB
testcase_08 AC 134 ms
41,340 KB
testcase_09 AC 134 ms
41,248 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 134 ms
41,036 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 119 ms
40,416 KB
testcase_23 AC 134 ms
41,336 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 135 ms
41,164 KB
testcase_27 AC 132 ms
41,268 KB
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	static long[][] c = new long[10][10];
	{
		c[0][0] = 1;
		for (int i = 1; i < 10; ++i) {
			for (int j = 0; j <= i; ++j) {
				c[i][j] = c[i - 1][j] + (j > 0 ? c[i - 1][j - 1] : 0);
				// if (c[i][j] % 2 == 0) {
				// System.out.println(Integer.toBinaryString(i));
				// System.out.println(Integer.toBinaryString(j));
				// System.out.println();
				// }
			}
		}
	}

	static void run() {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		int[] cnt = new int[2];
		long d = n;
		while (d > 0) {
			++cnt[(int) d % 2];
			d /= 2;
		}
		System.out.println((n + 1) - (1L << cnt[1]));
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0