結果

問題 No.2853 A + B Problem
ユーザー tentententen
提出日時 2024-08-26 17:07:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,828 bytes
コンパイル時間 9,140 ms
コンパイル使用メモリ 78,352 KB
実行使用メモリ 50,464 KB
最終ジャッジ日時 2024-08-26 17:07:31
合計ジャッジ時間 5,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,344 KB
testcase_01 AC 47 ms
50,272 KB
testcase_02 AC 45 ms
50,372 KB
testcase_03 AC 46 ms
50,072 KB
testcase_04 AC 45 ms
50,000 KB
testcase_05 AC 45 ms
49,904 KB
testcase_06 AC 46 ms
50,192 KB
testcase_07 AC 55 ms
50,324 KB
testcase_08 AC 48 ms
49,864 KB
testcase_09 AC 45 ms
50,276 KB
testcase_10 AC 49 ms
49,984 KB
testcase_11 AC 48 ms
50,408 KB
testcase_12 AC 48 ms
50,272 KB
testcase_13 AC 47 ms
50,236 KB
testcase_14 AC 49 ms
50,312 KB
testcase_15 AC 48 ms
50,116 KB
testcase_16 AC 46 ms
50,272 KB
testcase_17 AC 46 ms
50,344 KB
testcase_18 AC 47 ms
50,428 KB
testcase_19 AC 47 ms
50,160 KB
testcase_20 AC 48 ms
50,088 KB
testcase_21 AC 46 ms
50,044 KB
testcase_22 AC 48 ms
50,332 KB
testcase_23 AC 47 ms
50,464 KB
testcase_24 AC 50 ms
50,412 KB
testcase_25 AC 49 ms
50,392 KB
testcase_26 AC 49 ms
50,364 KB
testcase_27 AC 58 ms
50,244 KB
testcase_28 AC 51 ms
50,320 KB
testcase_29 AC 51 ms
49,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static long[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        int pop = getPop(n);
        dp = new long[pop][pop];
        for (long[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        long ans = 0;
        for (int i = 1; i < pop; i++) {
            ans += dfw(pop - 1, i - 1);
        }
        System.out.println(ans);
    }
    
    static long dfw(int idx, int v) {
        if (v < 0) {
            return 1;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = dfw(idx - 1, v) + dfw(idx - 1, v - 1);
        }
        return dp[idx][v];
    }
    
    static int getPop(long x) {
        long pop = 0;
        while (x > 0) {
            pop += x % 2;
            x >>= 1;
        }
        return (int)pop;
    }
}

class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0