結果
問題 | No.2875 What is My Rank? |
ユーザー | rlangevin |
提出日時 | 2024-09-06 23:03:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 726 bytes |
コンパイル時間 | 222 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 80,172 KB |
最終ジャッジ日時 | 2024-09-06 23:04:56 |
合計ジャッジ時間 | 9,157 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,244 KB |
testcase_01 | AC | 35 ms
52,676 KB |
testcase_02 | AC | 37 ms
52,748 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 33 ms
53,088 KB |
testcase_06 | WA | - |
testcase_07 | AC | 37 ms
52,408 KB |
testcase_08 | AC | 34 ms
53,508 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 484 ms
79,172 KB |
testcase_34 | AC | 281 ms
79,004 KB |
ソースコード
import sys input = sys.stdin.readline N = int(input()) L, R = [0] * N, [0] * N inv = 1 mod = 998244353 for i in range(N): L[i], R[i] = map(int, input().split()) inv *= pow(R[i] - L[i] + 1, mod - 2, mod) inv %= mod def Gauss(n): return n * (n + 1) // 2 ans = 1 for i in range(1, N): l0, r0 = L[0], R[0] l1, r1 = L[i], R[i] temp = 0 if r0 < l1: ans += 1 elif l0 > r1: pass else: if l0 < l1: l0 = l1 if r0 > r1: temp += (r0 - r1) * (r1 - l1 + 1) r0 = r1 temp += Gauss(r1 - l0) - Gauss(r1 - r0 - 1) ans += temp * pow((r0 - l0 + 1) * (r1 - l1 + 1), mod - 2, mod) ans %= mod print(ans % mod)