結果

問題 No.1001 注文の多い順列
ユーザー suisensuisen
提出日時 2024-12-22 21:46:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 76,924 KB
最終ジャッジ日時 2024-12-22 21:46:18
合計ジャッジ時間 5,583 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,984 KB
testcase_01 AC 39 ms
53,028 KB
testcase_02 AC 38 ms
52,368 KB
testcase_03 AC 38 ms
52,840 KB
testcase_04 AC 39 ms
52,404 KB
testcase_05 AC 41 ms
52,408 KB
testcase_06 AC 39 ms
52,564 KB
testcase_07 AC 41 ms
53,532 KB
testcase_08 AC 39 ms
52,836 KB
testcase_09 AC 38 ms
53,356 KB
testcase_10 AC 39 ms
52,120 KB
testcase_11 AC 39 ms
53,312 KB
testcase_12 AC 48 ms
52,608 KB
testcase_13 AC 52 ms
63,428 KB
testcase_14 AC 54 ms
64,464 KB
testcase_15 AC 56 ms
65,336 KB
testcase_16 AC 53 ms
63,852 KB
testcase_17 AC 53 ms
64,328 KB
testcase_18 AC 182 ms
76,744 KB
testcase_19 AC 167 ms
76,316 KB
testcase_20 AC 142 ms
76,432 KB
testcase_21 AC 136 ms
76,296 KB
testcase_22 AC 229 ms
76,924 KB
testcase_23 AC 199 ms
76,636 KB
testcase_24 AC 199 ms
76,648 KB
testcase_25 AC 197 ms
76,716 KB
testcase_26 AC 188 ms
76,796 KB
testcase_27 AC 197 ms
76,832 KB
testcase_28 AC 233 ms
76,668 KB
testcase_29 AC 192 ms
76,692 KB
testcase_30 AC 191 ms
76,696 KB
testcase_31 AC 196 ms
76,640 KB
testcase_32 AC 263 ms
76,628 KB
testcase_33 AC 192 ms
76,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = 10**9 + 7

n = int(input())
rs: list[tuple[int, int]] = []
for _ in range(n):
    t, x = map(int, input().split())
    if t == 1:
        rs.append((x - 1, 1))
    else:
        rs.append((x, 0))
rs.sort()

pd = [1]
for i, (r, f) in enumerate(rs):
    dp = [0] * (i + 2)
    for j in range(i + 1):
        num = r - j
        if f == 1:
            dp[j + 1] -= pd[j] * num % P
            dp[j] += pd[j]
        else:
            dp[j + 1] += pd[j] * num % P
    pd = [e % P for e in dp]
ans = 0
fac = 1
for j in reversed(range(n + 1)):
    ans += pd[j] * fac % P
    fac = fac * (n - j + 1) % P
print(ans % P)
0