結果

問題 No.589 Counting Even
ユーザー 37zigen37zigen
提出日時 2017-11-09 03:27:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 841 bytes
コンパイル時間 2,411 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-05-03 08:06:58
合計ジャッジ時間 7,340 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,556 KB
testcase_01 AC 134 ms
41,588 KB
testcase_02 AC 137 ms
41,708 KB
testcase_03 AC 138 ms
41,200 KB
testcase_04 AC 138 ms
41,432 KB
testcase_05 AC 136 ms
41,328 KB
testcase_06 AC 127 ms
41,020 KB
testcase_07 AC 133 ms
41,096 KB
testcase_08 AC 116 ms
39,788 KB
testcase_09 AC 129 ms
41,224 KB
testcase_10 AC 133 ms
40,884 KB
testcase_11 AC 129 ms
41,088 KB
testcase_12 AC 130 ms
41,408 KB
testcase_13 AC 134 ms
41,380 KB
testcase_14 AC 130 ms
40,944 KB
testcase_15 AC 134 ms
41,460 KB
testcase_16 AC 133 ms
41,288 KB
testcase_17 AC 132 ms
41,376 KB
testcase_18 AC 132 ms
41,008 KB
testcase_19 AC 130 ms
41,300 KB
testcase_20 AC 131 ms
41,156 KB
testcase_21 AC 116 ms
40,080 KB
testcase_22 AC 117 ms
39,820 KB
testcase_23 AC 136 ms
41,200 KB
testcase_24 AC 135 ms
41,456 KB
testcase_25 AC 130 ms
41,532 KB
testcase_26 AC 130 ms
41,036 KB
testcase_27 AC 127 ms
41,132 KB
testcase_28 AC 125 ms
41,284 KB
権限があれば一括ダウンロードができます

ソースコード

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