結果
問題 | No.2615 ペアの作り方 |
ユーザー | tenten |
提出日時 | 2024-01-29 19:14:58 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 521 ms / 2,000 ms |
コード長 | 1,970 bytes |
コンパイル時間 | 2,562 ms |
コンパイル使用メモリ | 92,248 KB |
実行使用メモリ | 57,500 KB |
最終ジャッジ日時 | 2024-09-28 10:03:11 |
合計ジャッジ時間 | 7,497 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 69 ms
38,204 KB |
testcase_01 | AC | 69 ms
38,408 KB |
testcase_02 | AC | 70 ms
37,976 KB |
testcase_03 | AC | 68 ms
38,120 KB |
testcase_04 | AC | 69 ms
37,912 KB |
testcase_05 | AC | 70 ms
38,304 KB |
testcase_06 | AC | 72 ms
38,084 KB |
testcase_07 | AC | 70 ms
38,220 KB |
testcase_08 | AC | 67 ms
38,176 KB |
testcase_09 | AC | 93 ms
39,480 KB |
testcase_10 | AC | 94 ms
39,200 KB |
testcase_11 | AC | 94 ms
39,128 KB |
testcase_12 | AC | 97 ms
38,924 KB |
testcase_13 | AC | 90 ms
39,520 KB |
testcase_14 | AC | 96 ms
39,328 KB |
testcase_15 | AC | 511 ms
56,668 KB |
testcase_16 | AC | 512 ms
56,752 KB |
testcase_17 | AC | 489 ms
56,808 KB |
testcase_18 | AC | 521 ms
57,500 KB |
testcase_19 | AC | 455 ms
56,776 KB |
testcase_20 | AC | 478 ms
56,720 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { static final int MOD = 998244353; public static void main(String[] args) { Scanner sc = new Scanner(); int n = sc.nextInt(); PriorityQueue<Long> queue = IntStream.range(0, n * 2) .mapToObj(i -> sc.nextLong() * 2 + (i >= n ? 1 : 0)) .collect(Collectors.toCollection(PriorityQueue::new)); long count = IntStream.range(0, n) .mapToLong(i -> queue.poll() % 2) .sum(); System.out.println(getFact(count) * getFact(n - count) % MOD); } static long getFact(long x) { return LongStream.rangeClosed(1, x) .reduce(1, (a, b) -> (a * b) % MOD); } } 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; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }