結果
問題 | No.420 mod2漸化式 |
ユーザー | tenten |
提出日時 | 2022-10-12 19:12:26 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 95 ms / 1,000 ms |
コード長 | 1,590 bytes |
コンパイル時間 | 3,563 ms |
コンパイル使用メモリ | 78,496 KB |
実行使用メモリ | 53,480 KB |
最終ジャッジ日時 | 2024-06-26 11:27:25 |
合計ジャッジ時間 | 6,934 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
51,244 KB |
testcase_01 | AC | 81 ms
51,216 KB |
testcase_02 | AC | 90 ms
52,060 KB |
testcase_03 | AC | 79 ms
51,332 KB |
testcase_04 | AC | 95 ms
52,548 KB |
testcase_05 | AC | 79 ms
51,588 KB |
testcase_06 | AC | 87 ms
50,772 KB |
testcase_07 | AC | 82 ms
52,840 KB |
testcase_08 | AC | 78 ms
51,336 KB |
testcase_09 | AC | 81 ms
51,264 KB |
testcase_10 | AC | 95 ms
52,036 KB |
testcase_11 | AC | 78 ms
51,264 KB |
testcase_12 | AC | 91 ms
51,036 KB |
testcase_13 | AC | 79 ms
51,436 KB |
testcase_14 | AC | 92 ms
52,820 KB |
testcase_15 | AC | 80 ms
51,576 KB |
testcase_16 | AC | 80 ms
51,400 KB |
testcase_17 | AC | 78 ms
53,480 KB |
testcase_18 | AC | 92 ms
52,820 KB |
testcase_19 | AC | 81 ms
51,524 KB |
testcase_20 | AC | 80 ms
51,392 KB |
testcase_21 | AC | 80 ms
51,440 KB |
testcase_22 | AC | 80 ms
51,360 KB |
testcase_23 | AC | 80 ms
51,088 KB |
testcase_24 | AC | 79 ms
51,296 KB |
testcase_25 | AC | 78 ms
51,332 KB |
testcase_26 | AC | 80 ms
51,008 KB |
testcase_27 | AC | 79 ms
50,944 KB |
testcase_28 | AC | 80 ms
51,604 KB |
testcase_29 | AC | 87 ms
51,384 KB |
testcase_30 | AC | 80 ms
51,612 KB |
testcase_31 | AC | 90 ms
51,392 KB |
testcase_32 | AC | 80 ms
51,060 KB |
testcase_33 | AC | 54 ms
50,436 KB |
testcase_34 | AC | 54 ms
50,440 KB |
testcase_35 | AC | 53 ms
50,212 KB |
ソースコード
import java.io.*; import java.util.*; 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; } 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 total; if (n == 0) { total = 0; } else { total = ((1 << 31) - 1) * comb[30][n - 1]; } System.out.println(count + " " + total); } } 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 String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }