結果

問題 No.2197 Same Dish
ユーザー H20H20
提出日時 2023-01-20 22:31:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 682 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 128,176 KB
最終ジャッジ日時 2024-06-23 10:27:45
合計ジャッジ時間 6,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,816 KB
testcase_01 AC 40 ms
55,336 KB
testcase_02 AC 41 ms
55,864 KB
testcase_03 AC 41 ms
54,024 KB
testcase_04 AC 41 ms
54,376 KB
testcase_05 AC 40 ms
55,504 KB
testcase_06 AC 41 ms
55,800 KB
testcase_07 AC 40 ms
54,180 KB
testcase_08 AC 41 ms
54,688 KB
testcase_09 AC 41 ms
54,180 KB
testcase_10 AC 41 ms
53,928 KB
testcase_11 AC 42 ms
56,192 KB
testcase_12 AC 42 ms
54,240 KB
testcase_13 AC 157 ms
82,824 KB
testcase_14 AC 519 ms
113,184 KB
testcase_15 AC 542 ms
114,356 KB
testcase_16 AC 426 ms
104,988 KB
testcase_17 AC 371 ms
100,888 KB
testcase_18 AC 558 ms
117,144 KB
testcase_19 AC 572 ms
117,376 KB
testcase_20 AC 576 ms
117,040 KB
testcase_21 AC 490 ms
112,020 KB
testcase_22 AC 682 ms
128,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,K = map(int, input().split())
LR = [list(map(int, input().split())) for _ in range(N)]
D = collections.defaultdict(int)
for l,r in LR:
    D[l*2]+=1
    D[r*2-1]-=1
D = sorted(D.items())
mod = 998244353
eat = 0
dp = 1


for k,v in D:
    if k%2==0:
        for _ in range(v):
            dp = (dp*(K-eat))%mod
            eat+=1
    else:
        eat+=v
print((pow(K,N,mod)-dp)%mod)
0