結果

問題 No.2197 Same Dish
ユーザー rlangevinrlangevin
提出日時 2023-01-20 22:11:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 83,300 KB
最終ジャッジ日時 2024-06-23 10:09:00
合計ジャッジ時間 4,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,264 KB
testcase_01 AC 45 ms
58,880 KB
testcase_02 AC 45 ms
59,264 KB
testcase_03 AC 44 ms
59,264 KB
testcase_04 AC 44 ms
59,008 KB
testcase_05 AC 44 ms
59,008 KB
testcase_06 AC 44 ms
59,648 KB
testcase_07 AC 46 ms
59,392 KB
testcase_08 AC 45 ms
59,264 KB
testcase_09 AC 45 ms
59,008 KB
testcase_10 AC 44 ms
59,136 KB
testcase_11 AC 49 ms
59,392 KB
testcase_12 AC 46 ms
59,264 KB
testcase_13 AC 102 ms
77,696 KB
testcase_14 AC 306 ms
82,944 KB
testcase_15 AC 325 ms
83,168 KB
testcase_16 AC 232 ms
81,732 KB
testcase_17 AC 209 ms
80,780 KB
testcase_18 AC 321 ms
83,140 KB
testcase_19 AC 333 ms
83,200 KB
testcase_20 AC 327 ms
83,264 KB
testcase_21 AC 328 ms
83,296 KB
testcase_22 AC 318 ms
83,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N, K = map(int, readline().split())
mod = 998244353
inf = 10 ** 18
D = [(inf, inf)]
cnt = [0] * 202020
for i in range(N):
    L, R = map(int, readline().split())
    D.append((L, R))
D.sort(reverse=True)
val = 1
size = 0
for i in range(202020):
    size -= cnt[i]
    while D[-1][0] == i:
        _, r = D.pop()
        cnt[r] += 1
        size += 1
        val *= K + 1 - size
        val %= mod
print( (pow(K, N, mod) - val)%mod )
0