結果
問題 | No.287 場合の数 |
ユーザー | tenten |
提出日時 | 2023-04-04 15:14:51 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 50 ms / 5,000 ms |
コード長 | 2,013 bytes |
コンパイル時間 | 2,364 ms |
コンパイル使用メモリ | 90,496 KB |
実行使用メモリ | 37,324 KB |
最終ジャッジ日時 | 2024-10-01 07:30:21 |
合計ジャッジ時間 | 4,461 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
37,184 KB |
testcase_01 | AC | 44 ms
37,324 KB |
testcase_02 | AC | 46 ms
37,192 KB |
testcase_03 | AC | 50 ms
37,192 KB |
testcase_04 | AC | 44 ms
37,048 KB |
testcase_05 | AC | 47 ms
36,980 KB |
testcase_06 | AC | 49 ms
37,184 KB |
testcase_07 | AC | 47 ms
37,048 KB |
testcase_08 | AC | 45 ms
36,816 KB |
testcase_09 | AC | 46 ms
37,300 KB |
testcase_10 | AC | 46 ms
37,188 KB |
testcase_11 | AC | 45 ms
37,104 KB |
testcase_12 | AC | 47 ms
36,988 KB |
testcase_13 | AC | 45 ms
37,300 KB |
testcase_14 | AC | 45 ms
37,056 KB |
testcase_15 | AC | 45 ms
37,048 KB |
testcase_16 | AC | 45 ms
36,968 KB |
testcase_17 | AC | 45 ms
36,948 KB |
testcase_18 | AC | 44 ms
37,260 KB |
testcase_19 | AC | 46 ms
37,176 KB |
testcase_20 | AC | 46 ms
37,040 KB |
testcase_21 | AC | 46 ms
36,804 KB |
testcase_22 | AC | 46 ms
37,012 KB |
testcase_23 | AC | 46 ms
37,268 KB |
testcase_24 | AC | 49 ms
37,316 KB |
ソースコード
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(); long[] counts2 = new long[n * 2 + 1]; for (int i = 0; i <= n; i++) { for (int j = 0; j <= n; j++) { counts2[i + j]++; } } long[] counts4 = new long[n * 4 + 1]; for (int i = 0; i <= 2 * n; i++) { for (int j = 0; j <= 2 * n; j++) { counts4[i + j] += counts2[i] * counts2[j]; } } long ans = 0; for (int i = 2 * n; i <= 4 * n; i++) { ans += counts4[i] * counts4[6 * n - i]; } System.out.println(ans); } } 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(); } }