結果

問題 No.420 mod2漸化式
ユーザー tentententen
提出日時 2020-10-14 11:22:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 1,000 ms
コード長 804 bytes
コンパイル時間 2,675 ms
コンパイル使用メモリ 76,956 KB
実行使用メモリ 42,424 KB
最終ジャッジ日時 2024-07-20 19:02:55
合計ジャッジ時間 8,988 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
42,068 KB
testcase_01 AC 162 ms
42,016 KB
testcase_02 AC 159 ms
42,288 KB
testcase_03 AC 159 ms
42,092 KB
testcase_04 AC 160 ms
42,180 KB
testcase_05 AC 158 ms
42,200 KB
testcase_06 AC 135 ms
41,248 KB
testcase_07 AC 158 ms
42,220 KB
testcase_08 AC 157 ms
42,408 KB
testcase_09 AC 157 ms
42,312 KB
testcase_10 AC 164 ms
42,040 KB
testcase_11 AC 159 ms
42,028 KB
testcase_12 AC 158 ms
42,240 KB
testcase_13 AC 154 ms
42,076 KB
testcase_14 AC 151 ms
41,932 KB
testcase_15 AC 142 ms
42,080 KB
testcase_16 AC 160 ms
42,252 KB
testcase_17 AC 158 ms
41,944 KB
testcase_18 AC 160 ms
42,104 KB
testcase_19 AC 155 ms
42,140 KB
testcase_20 AC 155 ms
42,424 KB
testcase_21 AC 156 ms
42,316 KB
testcase_22 AC 157 ms
42,112 KB
testcase_23 AC 155 ms
41,968 KB
testcase_24 AC 158 ms
42,180 KB
testcase_25 AC 155 ms
42,092 KB
testcase_26 AC 140 ms
42,100 KB
testcase_27 AC 157 ms
42,020 KB
testcase_28 AC 158 ms
42,160 KB
testcase_29 AC 160 ms
42,232 KB
testcase_30 AC 157 ms
42,108 KB
testcase_31 AC 155 ms
42,116 KB
testcase_32 AC 155 ms
42,312 KB
testcase_33 AC 133 ms
41,184 KB
testcase_34 AC 131 ms
41,092 KB
testcase_35 AC 129 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int x = sc.nextInt();
    	if (x > 31) {
    	    System.out.println("0 0");
    	    return;
    	}
    	if (x == 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][x];
    	long sum = 0;
    	for (int i = 0; i < 31; i++) {
    	    sum += (1L << i) * comb[30][x - 1];
    	}
    	System.out.println(count + " " + sum);
	}
}
0