結果

問題 No.2197 Same Dish
ユーザー shobonvipshobonvip
提出日時 2023-01-20 21:53:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 79,616 KB
最終ジャッジ日時 2024-06-23 09:52:02
合計ジャッジ時間 3,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,464 KB
testcase_01 AC 46 ms
62,592 KB
testcase_02 AC 46 ms
62,336 KB
testcase_03 AC 51 ms
62,208 KB
testcase_04 AC 51 ms
62,080 KB
testcase_05 AC 50 ms
62,336 KB
testcase_06 AC 51 ms
62,464 KB
testcase_07 AC 49 ms
62,080 KB
testcase_08 AC 50 ms
62,848 KB
testcase_09 AC 49 ms
62,720 KB
testcase_10 AC 50 ms
62,720 KB
testcase_11 AC 51 ms
62,976 KB
testcase_12 AC 47 ms
62,848 KB
testcase_13 AC 89 ms
79,232 KB
testcase_14 AC 140 ms
79,616 KB
testcase_15 AC 152 ms
79,616 KB
testcase_16 AC 127 ms
79,616 KB
testcase_17 AC 130 ms
79,556 KB
testcase_18 AC 153 ms
79,528 KB
testcase_19 AC 148 ms
79,616 KB
testcase_20 AC 157 ms
79,360 KB
testcase_21 AC 137 ms
79,360 KB
testcase_22 AC 130 ms
79,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 余事象を求める. (つまり, 全部被らない)

mod = 998244353

n,k = map(int,input().split())
ins = [0 for i in range(200003)]
outs = [0 for i in range(200003)]

for i in range(n):
	l, r = map(int,input().split())
	ins[l] += 1
	outs[r] += 1

now = 0
ans = 1

for i in range(200002):
	for j in range(outs[i]):
		now -= 1
	for j in range(ins[i]):
		ans *= k-now
		ans %= mod
		now += 1

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