結果
問題 | No.2197 Same Dish |
ユーザー | flygon |
提出日時 | 2023-01-20 22:10:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 694 ms / 2,000 ms |
コード長 | 319 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 98,360 KB |
最終ジャッジ日時 | 2024-06-23 10:08:03 |
合計ジャッジ時間 | 7,228 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
n,k = map(int,input().split()) mod = 998244353 lr = [] for i in range(n): l,r = map(int,input().split()) lr.append([l, 1]) lr.append([r, -1]) lr.sort() ans = 1 now = 0 for a,b in lr: if b == -1: now -= 1 else: ans *= k-now now += 1 ans %= mod ans = pow(k, n, mod) - ans ans %= mod print(ans)