結果
問題 | No.1492 01文字列と転倒 |
ユーザー | tenten |
提出日時 | 2021-05-06 13:19:23 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 3,960 ms / 4,000 ms |
コード長 | 2,346 bytes |
コンパイル時間 | 2,572 ms |
コンパイル使用メモリ | 80,560 KB |
実行使用メモリ | 97,400 KB |
最終ジャッジ日時 | 2024-06-23 22:00:28 |
合計ジャッジ時間 | 39,228 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,268 KB |
testcase_01 | AC | 54 ms
50,352 KB |
testcase_02 | AC | 3,673 ms
93,624 KB |
testcase_03 | AC | 3,612 ms
93,620 KB |
testcase_04 | AC | 3,431 ms
97,400 KB |
testcase_05 | AC | 3,121 ms
89,284 KB |
testcase_06 | AC | 3,341 ms
90,528 KB |
testcase_07 | AC | 3,470 ms
95,640 KB |
testcase_08 | AC | 3,960 ms
93,584 KB |
testcase_09 | AC | 55 ms
50,492 KB |
testcase_10 | AC | 55 ms
50,412 KB |
testcase_11 | AC | 56 ms
50,288 KB |
testcase_12 | AC | 55 ms
50,388 KB |
testcase_13 | AC | 56 ms
50,392 KB |
testcase_14 | AC | 3,191 ms
90,660 KB |
testcase_15 | AC | 102 ms
51,324 KB |
testcase_16 | AC | 248 ms
59,464 KB |
testcase_17 | AC | 3,237 ms
89,280 KB |
testcase_18 | AC | 256 ms
59,916 KB |
testcase_19 | AC | 81 ms
51,068 KB |
testcase_20 | AC | 190 ms
56,496 KB |
testcase_21 | AC | 2,550 ms
88,184 KB |
testcase_22 | AC | 246 ms
59,672 KB |
testcase_23 | AC | 151 ms
54,448 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { static ArrayList<ArrayList<Integer>> lists = new ArrayList<>(); public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); HashMap<Integer, HashMap<Integer, Integer>> current = new HashMap<>(); current.put(0, new HashMap<>()); current.get(0).put(0, 1); for (int i = 2; i <= n * 2; i++) { HashMap<Integer, HashMap<Integer, Integer>> next = new HashMap<>(); for (int x : current.keySet()) { for (int y : current.get(x).keySet()) { if (i - x <= n) { if (!next.containsKey(x)) { next.put(x, new HashMap<>()); } next.get(x).put(y + x, (next.get(x).getOrDefault(y + x, 0) + current.get(x).get(y)) % m); } if (x < i - x - 1) { if (!next.containsKey(x + 1)) { next.put(x + 1, new HashMap<>()); } next.get(x + 1).put(y, (next.get(x + 1).getOrDefault(y, 0) + current.get(x).get(y)) % m); } } } current = next; } int[] ans = new int[n * n + 1]; for (HashMap<Integer, Integer> map : current.values()) { for (int x : map.keySet()) { ans[x] += map.get(x); ans[x] %= m; } } StringBuilder sb = new StringBuilder(); for (int x : ans) { sb.append(x).append("\n"); } System.out.print(sb); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }