結果
問題 | No.2615 ペアの作り方 |
ユーザー | tenten |
提出日時 | 2024-01-29 19:03:30 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 441 ms / 2,000 ms |
コード長 | 2,056 bytes |
コンパイル時間 | 2,329 ms |
コンパイル使用メモリ | 91,164 KB |
実行使用メモリ | 55,292 KB |
最終ジャッジ日時 | 2024-09-28 10:03:03 |
合計ジャッジ時間 | 6,692 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
37,084 KB |
testcase_01 | AC | 48 ms
36,892 KB |
testcase_02 | AC | 49 ms
37,192 KB |
testcase_03 | AC | 47 ms
37,000 KB |
testcase_04 | AC | 50 ms
36,868 KB |
testcase_05 | AC | 47 ms
37,028 KB |
testcase_06 | AC | 48 ms
36,616 KB |
testcase_07 | AC | 48 ms
37,024 KB |
testcase_08 | AC | 46 ms
37,052 KB |
testcase_09 | AC | 84 ms
38,180 KB |
testcase_10 | AC | 75 ms
38,268 KB |
testcase_11 | AC | 83 ms
38,272 KB |
testcase_12 | AC | 82 ms
38,252 KB |
testcase_13 | AC | 82 ms
38,320 KB |
testcase_14 | AC | 82 ms
37,852 KB |
testcase_15 | AC | 420 ms
54,636 KB |
testcase_16 | AC | 441 ms
54,492 KB |
testcase_17 | AC | 386 ms
54,768 KB |
testcase_18 | AC | 408 ms
55,292 KB |
testcase_19 | AC | 404 ms
54,372 KB |
testcase_20 | AC | 406 ms
54,348 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 = new PriorityQueue<>(); for (int i = 0; i < n; i++) { queue.add(sc.nextLong() * 2); } for (int i = 0; i < n; i++) { queue.add(sc.nextLong() * 2 + 1); } long count = 0; for (int i = 0; i < n; i++) { count += queue.poll() % 2; } System.out.println(fact(count) * fact(n - count) % MOD); } static long fact(long x) { long ans = 1; for (int i = 1; i <= x; i++) { ans *= i; ans %= MOD; } return 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; 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(); } } }