結果

問題 No.2197 Same Dish
ユーザー minimumminimum
提出日時 2023-01-20 21:46:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 420 bytes
コンパイル時間 657 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 264,284 KB
最終ジャッジ日時 2024-06-23 09:42:25
合計ジャッジ時間 4,963 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,472 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 37 ms
52,352 KB
testcase_12 AC 37 ms
52,204 KB
testcase_13 AC 246 ms
77,824 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

N, K = map(int, input().split())
event = []
for i in range(N):
    l, r = map(int, input().split())
    event.append((l, 1))
    event.append((r, 0))
event.sort()


cnt = 0
ans = 1

for i in range(2 * N):
    x, t = event[i]
    if t == 1:
        if cnt == K:
            ans = 0
        else:
            ans *= K - cnt
        cnt += 1
    else:
        cnt -= 1


print((pow(K, N, MOD) - ans) % MOD)
0