結果

問題 No.2197 Same Dish
ユーザー ああいいああいい
提出日時 2023-01-21 14:41:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 653 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 87,116 KB
最終ジャッジ日時 2024-06-23 22:45:03
合計ジャッジ時間 7,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 42 ms
52,352 KB
testcase_12 AC 42 ms
52,096 KB
testcase_13 AC 142 ms
77,824 KB
testcase_14 AC 577 ms
85,956 KB
testcase_15 AC 632 ms
86,496 KB
testcase_16 AC 427 ms
83,144 KB
testcase_17 AC 384 ms
83,200 KB
testcase_18 AC 648 ms
86,500 KB
testcase_19 AC 640 ms
86,376 KB
testcase_20 AC 653 ms
86,848 KB
testcase_21 AC 637 ms
87,116 KB
testcase_22 AC 641 ms
86,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
l = []
for _ in range(N):
    L,R = map(int,input().split())
    l.append((L,1))
    l.append((R,-1))

l.sort()
tmp = 1
num = 0
P = 998244353
for t,i in l:
    if i == 1:
        tmp *= (K - num)
        tmp %= P
        num += 1
    else:
        num -= 1
ans = pow(K,N,P) - tmp
print(ans%P)
0