結果

問題 No.2197 Same Dish
ユーザー lloyzlloyz
提出日時 2023-01-22 00:59:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 762 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 97,552 KB
最終ジャッジ日時 2024-06-24 06:33:58
合計ジャッジ時間 8,052 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,620 KB
testcase_01 AC 39 ms
52,928 KB
testcase_02 AC 39 ms
53,140 KB
testcase_03 AC 38 ms
52,132 KB
testcase_04 AC 39 ms
52,652 KB
testcase_05 AC 43 ms
53,576 KB
testcase_06 AC 39 ms
53,052 KB
testcase_07 AC 39 ms
54,152 KB
testcase_08 AC 39 ms
52,532 KB
testcase_09 AC 38 ms
52,072 KB
testcase_10 AC 39 ms
52,304 KB
testcase_11 AC 40 ms
52,524 KB
testcase_12 AC 41 ms
53,944 KB
testcase_13 AC 137 ms
79,244 KB
testcase_14 AC 654 ms
95,460 KB
testcase_15 AC 740 ms
96,812 KB
testcase_16 AC 496 ms
90,044 KB
testcase_17 AC 427 ms
88,092 KB
testcase_18 AC 749 ms
96,536 KB
testcase_19 AC 761 ms
96,784 KB
testcase_20 AC 762 ms
97,552 KB
testcase_21 AC 756 ms
97,392 KB
testcase_22 AC 706 ms
97,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
E = []
for _ in range(n):
    l, r = map(int, input().split())
    E.append((l, 1))
    E.append((r, -1))
mod = 998244353

E.sort(key=lambda x: (x[0], x[1]))
ans = 1
num = 0
for x, p in E:
    if p == 1:
        ans *= k - num
        ans %= mod
        num += 1
    else:
        num -= 1
print((pow(k, n, mod) - ans) % mod)
0