結果
問題 | No.2336 Do you like typical problems? |
ユーザー | hir355 |
提出日時 | 2023-06-02 22:08:49 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,217 bytes |
コンパイル時間 | 649 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 270,932 KB |
最終ジャッジ日時 | 2024-06-08 23:19:38 |
合計ジャッジ時間 | 9,061 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,464 KB |
testcase_01 | AC | 43 ms
52,352 KB |
testcase_02 | AC | 37 ms
52,788 KB |
testcase_03 | AC | 44 ms
52,736 KB |
testcase_04 | AC | 42 ms
52,480 KB |
testcase_05 | AC | 37 ms
52,352 KB |
testcase_06 | AC | 38 ms
52,864 KB |
testcase_07 | AC | 39 ms
52,252 KB |
testcase_08 | AC | 121 ms
78,464 KB |
testcase_09 | AC | 119 ms
78,224 KB |
testcase_10 | AC | 118 ms
78,440 KB |
testcase_11 | AC | 117 ms
78,384 KB |
testcase_12 | AC | 114 ms
78,576 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 976 ms
93,196 KB |
testcase_19 | AC | 998 ms
92,732 KB |
testcase_20 | AC | 1,950 ms
267,368 KB |
ソースコード
from math import factorial compress = lambda arr: {e: i for i, e in enumerate(sorted(set(arr)))} compress2 = lambda arr: {i: e for i, e in enumerate(sorted(set(arr)))} MOD = 998244353 n = int(input()) b = [0] * n c = [0] * n l = [] for i in range(n): b[i], c[i] = map(int, input().split()) b[i] -= 1 l.append(b[i]) l.append(c[i]) cp = compress(l) cp2 = compress2(l) # ans = 0 # for j in range(n): # for k in range(j + 1, n): # ans += (1 - max(0, min(c[j] - b[j], c[k] - b[k], c[j] - b[k], c[k] - b[j]) + 1) * pow((c[j] - b[j] + 1) * (c[k] - b[k] + 1), MOD - 2, MOD)) * f % MOD ans = 0 m = len(cp) w = [0] * m x = [0] * m y = [0] * m for j in range(n): w[cp[b[j]]] += 1 w[cp[c[j]]] -= 1 x[cp[b[j]]] += pow(c[j] - b[j], MOD - 2, MOD) x[cp[c[j]]] -= pow(c[j] - b[j], MOD - 2, MOD) y[cp[b[j]]] += pow((c[j] - b[j]) ** 2, MOD - 2, MOD) y[cp[c[j]]] -= pow((c[j] - b[j]) ** 2, MOD - 2, MOD) s0 = 0 s = 0 s2 = 0 f = 1 for i in range(n - 2): f *= (i + 1) f %= MOD for j in range(m - 1): s0 += w[j] s += x[j] s2 += y[j] ans += (s ** 2 - s2) * pow(2, MOD - 2, MOD) * (cp2[j + 1] - cp2[j]) print(((n * (n - 1) // 2 - ans) * n * (n - 1) // 2) * f % MOD)