結果

問題 No.2197 Same Dish
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-01-20 22:25:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 90,120 KB
最終ジャッジ日時 2024-06-23 10:22:14
合計ジャッジ時間 3,257 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,312 KB
testcase_01 AC 43 ms
61,440 KB
testcase_02 AC 42 ms
60,800 KB
testcase_03 AC 42 ms
61,184 KB
testcase_04 AC 43 ms
61,312 KB
testcase_05 AC 43 ms
61,184 KB
testcase_06 AC 43 ms
60,928 KB
testcase_07 AC 43 ms
60,800 KB
testcase_08 AC 44 ms
61,312 KB
testcase_09 AC 43 ms
61,056 KB
testcase_10 AC 44 ms
61,056 KB
testcase_11 AC 44 ms
61,440 KB
testcase_12 AC 43 ms
61,304 KB
testcase_13 AC 87 ms
80,920 KB
testcase_14 AC 149 ms
88,320 KB
testcase_15 AC 158 ms
90,120 KB
testcase_16 AC 130 ms
86,400 KB
testcase_17 AC 125 ms
85,760 KB
testcase_18 AC 163 ms
89,984 KB
testcase_19 AC 163 ms
89,856 KB
testcase_20 AC 163 ms
90,084 KB
testcase_21 AC 161 ms
89,856 KB
testcase_22 AC 160 ms
90,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
mod = 998244353

LR = [list(map(int,input().split())) for i in range(n)]
M = 2*10**5+1
eL = [0]*M
eR = [0]*M
for l,r in LR:
    eL[l] += 1
    eR[r-1] += 1


now = 0
dp = 1
for l,r in zip(eL,eR):
    if l:
        for i in range(l):
            dp *= k-now
            dp %= mod
            now += 1
    
    now -= r

ans = pow(k,n,mod)-dp
print(ans%mod)
0