結果
問題 | No.420 mod2漸化式 |
ユーザー | tenten |
提出日時 | 2023-04-14 13:31:03 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,002 bytes |
コンパイル時間 | 2,849 ms |
コンパイル使用メモリ | 87,704 KB |
実行使用メモリ | 37,332 KB |
最終ジャッジ日時 | 2024-10-10 05:31:37 |
合計ジャッジ時間 | 5,809 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
36,632 KB |
testcase_01 | AC | 53 ms
37,192 KB |
testcase_02 | AC | 54 ms
36,948 KB |
testcase_03 | AC | 52 ms
37,148 KB |
testcase_04 | AC | 52 ms
37,048 KB |
testcase_05 | AC | 52 ms
37,048 KB |
testcase_06 | RE | - |
testcase_07 | AC | 53 ms
37,148 KB |
testcase_08 | AC | 54 ms
36,920 KB |
testcase_09 | AC | 52 ms
36,920 KB |
testcase_10 | AC | 53 ms
37,296 KB |
testcase_11 | AC | 52 ms
37,032 KB |
testcase_12 | AC | 53 ms
36,952 KB |
testcase_13 | AC | 54 ms
36,652 KB |
testcase_14 | AC | 53 ms
37,000 KB |
testcase_15 | AC | 53 ms
37,204 KB |
testcase_16 | AC | 52 ms
37,332 KB |
testcase_17 | AC | 52 ms
36,788 KB |
testcase_18 | AC | 53 ms
36,920 KB |
testcase_19 | AC | 53 ms
37,168 KB |
testcase_20 | AC | 52 ms
37,024 KB |
testcase_21 | AC | 52 ms
36,920 KB |
testcase_22 | AC | 52 ms
36,652 KB |
testcase_23 | AC | 52 ms
37,028 KB |
testcase_24 | AC | 52 ms
36,652 KB |
testcase_25 | AC | 53 ms
36,908 KB |
testcase_26 | AC | 52 ms
37,016 KB |
testcase_27 | AC | 52 ms
37,056 KB |
testcase_28 | AC | 52 ms
37,132 KB |
testcase_29 | AC | 53 ms
37,236 KB |
testcase_30 | AC | 52 ms
36,884 KB |
testcase_31 | AC | 54 ms
37,188 KB |
testcase_32 | AC | 54 ms
37,312 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
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); 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]; } } } System.out.print(comb[31][n]); System.out.print(" "); System.out.println(((1L << 31) - 1) * comb[30][n - 1]); } } 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(); } }