結果

問題 No.2197 Same Dish
ユーザー tassei903tassei903
提出日時 2023-01-20 22:55:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 618 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 90,364 KB
最終ジャッジ日時 2024-06-23 10:54:37
合計ジャッジ時間 6,688 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,284 KB
testcase_01 AC 36 ms
52,068 KB
testcase_02 AC 36 ms
52,752 KB
testcase_03 AC 35 ms
52,952 KB
testcase_04 AC 35 ms
53,012 KB
testcase_05 AC 35 ms
53,364 KB
testcase_06 AC 36 ms
53,812 KB
testcase_07 AC 37 ms
52,472 KB
testcase_08 AC 36 ms
52,472 KB
testcase_09 AC 35 ms
53,148 KB
testcase_10 AC 36 ms
53,080 KB
testcase_11 AC 36 ms
53,168 KB
testcase_12 AC 36 ms
53,724 KB
testcase_13 AC 116 ms
77,552 KB
testcase_14 AC 530 ms
87,596 KB
testcase_15 AC 591 ms
89,724 KB
testcase_16 AC 388 ms
83,668 KB
testcase_17 AC 353 ms
83,572 KB
testcase_18 AC 602 ms
89,472 KB
testcase_19 AC 618 ms
90,260 KB
testcase_20 AC 613 ms
90,364 KB
testcase_21 AC 603 ms
90,120 KB
testcase_22 AC 589 ms
89,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n, k = na()
eve = []
for _ in range(n):
    l,r = na()
    eve.append((l,1))
    eve.append((r,-1))
eve = sorted(eve)
ans = 1
z = 0
mod = 998244353
for x, i in eve:
    if i == 1:
        ans *= k - z
        ans %= mod
        z += 1
    else:
        z -= 1
    #print(x,i,z,ans)


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