結果

問題 No.420 mod2漸化式
ユーザー tentententen
提出日時 2023-02-15 12:00:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 87 ms / 1,000 ms
コード長 2,099 bytes
コンパイル時間 2,497 ms
コンパイル使用メモリ 94,992 KB
実行使用メモリ 53,144 KB
最終ジャッジ日時 2024-07-17 22:01:27
合計ジャッジ時間 6,127 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
51,428 KB
testcase_01 AC 80 ms
51,456 KB
testcase_02 AC 73 ms
51,396 KB
testcase_03 AC 75 ms
51,328 KB
testcase_04 AC 70 ms
51,344 KB
testcase_05 AC 84 ms
53,104 KB
testcase_06 AC 52 ms
50,392 KB
testcase_07 AC 71 ms
51,200 KB
testcase_08 AC 80 ms
51,360 KB
testcase_09 AC 70 ms
51,488 KB
testcase_10 AC 70 ms
51,324 KB
testcase_11 AC 82 ms
51,488 KB
testcase_12 AC 68 ms
51,320 KB
testcase_13 AC 83 ms
51,636 KB
testcase_14 AC 70 ms
51,240 KB
testcase_15 AC 68 ms
51,224 KB
testcase_16 AC 79 ms
51,496 KB
testcase_17 AC 85 ms
51,584 KB
testcase_18 AC 80 ms
53,088 KB
testcase_19 AC 87 ms
52,452 KB
testcase_20 AC 80 ms
51,548 KB
testcase_21 AC 69 ms
51,556 KB
testcase_22 AC 82 ms
52,404 KB
testcase_23 AC 81 ms
51,508 KB
testcase_24 AC 74 ms
50,952 KB
testcase_25 AC 70 ms
53,144 KB
testcase_26 AC 72 ms
51,344 KB
testcase_27 AC 69 ms
51,208 KB
testcase_28 AC 69 ms
51,332 KB
testcase_29 AC 80 ms
51,240 KB
testcase_30 AC 72 ms
51,368 KB
testcase_31 AC 84 ms
51,676 KB
testcase_32 AC 81 ms
51,392 KB
testcase_33 AC 50 ms
50,480 KB
testcase_34 AC 48 ms
50,472 KB
testcase_35 AC 47 ms
52,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        if (n > 31) {
            System.out.println("0 0");
            return;
        }
        if (n == 0) {
            System.out.println("1 0");
            return;
        }
        long[][] comb = new long[32][32];
        for (int i = 0; i < 32; i++) {
            for (int j = 0; j <= i; j++) {
                if (j == 0 || j == i) {
                    comb[i][j] = 1;
                } else {
                    comb[i][j] = comb[i - 1][j - 1] + comb[i - 1][j];
                }
            }
        }
        long count = comb[31][n];
        long sum = ((1L << 31) - 1) * comb[30][n - 1];
        System.out.println(count + " " + sum);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0