結果
問題 | No.1689 Set Cards |
ユーザー | tenten |
提出日時 | 2021-11-09 14:36:03 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 747 ms / 2,000 ms |
コード長 | 1,616 bytes |
コンパイル時間 | 2,266 ms |
コンパイル使用メモリ | 79,116 KB |
実行使用メモリ | 62,548 KB |
最終ジャッジ日時 | 2024-11-18 12:35:01 |
合計ジャッジ時間 | 7,228 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
50,400 KB |
testcase_01 | AC | 48 ms
50,384 KB |
testcase_02 | AC | 53 ms
50,348 KB |
testcase_03 | AC | 55 ms
50,376 KB |
testcase_04 | AC | 54 ms
50,104 KB |
testcase_05 | AC | 54 ms
50,192 KB |
testcase_06 | AC | 51 ms
50,328 KB |
testcase_07 | AC | 49 ms
50,396 KB |
testcase_08 | AC | 49 ms
50,456 KB |
testcase_09 | AC | 48 ms
50,464 KB |
testcase_10 | AC | 49 ms
50,464 KB |
testcase_11 | AC | 392 ms
56,180 KB |
testcase_12 | AC | 383 ms
56,324 KB |
testcase_13 | AC | 119 ms
51,944 KB |
testcase_14 | AC | 216 ms
60,360 KB |
testcase_15 | AC | 154 ms
56,004 KB |
testcase_16 | AC | 187 ms
55,868 KB |
testcase_17 | AC | 117 ms
54,256 KB |
testcase_18 | AC | 391 ms
56,312 KB |
testcase_19 | AC | 88 ms
51,964 KB |
testcase_20 | AC | 100 ms
51,892 KB |
testcase_21 | AC | 59 ms
50,164 KB |
testcase_22 | AC | 76 ms
51,104 KB |
testcase_23 | AC | 92 ms
51,760 KB |
testcase_24 | AC | 747 ms
56,996 KB |
testcase_25 | AC | 308 ms
62,548 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { static final int MOD = 998244353; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); TreeMap<Integer, Integer> current = new TreeMap<>(); current.put((1 << 12) - 1, 1); for (int i = 0; i < n; i++) { int count = sc.nextInt(); int x = 0; for (int j = 0; j < count; j++) { x += (1 << (sc.nextInt() - 1)); } Integer key = -1; while ((key = current.higherKey(key)) != null) { int next = (key & x); current.put(next, (current.getOrDefault(next, 0) + current.get(key)) % MOD); } } System.out.println(current.getOrDefault(0, 0)); } } 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 double nextDouble() throws Exception { return Double.parseDouble(next()); } public String nextLine() throws Exception { return br.readLine(); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }