結果

問題 No.2197 Same Dish
ユーザー ntudantuda
提出日時 2023-01-22 21:54:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 554 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-06-25 00:14:54
合計ジャッジ時間 6,403 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 41 ms
52,608 KB
testcase_06 AC 42 ms
52,352 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 44 ms
52,352 KB
testcase_09 AC 42 ms
52,480 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 AC 44 ms
52,992 KB
testcase_12 AC 43 ms
52,864 KB
testcase_13 AC 175 ms
78,592 KB
testcase_14 AC 478 ms
88,704 KB
testcase_15 AC 531 ms
89,728 KB
testcase_16 AC 398 ms
85,504 KB
testcase_17 AC 353 ms
84,320 KB
testcase_18 AC 554 ms
90,368 KB
testcase_19 AC 536 ms
89,344 KB
testcase_20 AC 543 ms
89,856 KB
testcase_21 AC 456 ms
91,904 KB
testcase_22 AC 430 ms
87,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
from heapq import *

N, K = map(int, input().split())
LR = [list(map(int, input().split())) for _ in range(N)]
LR.sort()
q = []
cnt = 0
All = pow(K, N, MOD)
tmp = 1
for l, r in LR:
    if q:
        while q and q[0] <= l:
            cnt -= 1
            heappop(q)
    tmp *= (K - cnt)
    tmp %= MOD
    cnt += 1
    heappush(q, r)
print((All - tmp) % MOD)
0