結果

問題 No.1596 Distance Sum in 2D Plane
ユーザー shinichishinichi
提出日時 2021-09-29 16:55:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 850 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 69,904 KB
最終ジャッジ日時 2024-07-16 12:30:12
合計ジャッジ時間 29,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 669 ms
69,768 KB
testcase_02 AC 1,898 ms
69,904 KB
testcase_03 AC 1,913 ms
69,900 KB
testcase_04 AC 1,918 ms
69,764 KB
testcase_05 AC 1,910 ms
69,748 KB
testcase_06 AC 1,933 ms
69,892 KB
testcase_07 AC 1,894 ms
69,892 KB
testcase_08 AC 1,911 ms
69,896 KB
testcase_09 AC 1,924 ms
69,900 KB
testcase_10 AC 1,915 ms
69,900 KB
testcase_11 AC 1,765 ms
69,764 KB
testcase_12 AC 1,720 ms
69,896 KB
testcase_13 AC 1,673 ms
69,772 KB
testcase_14 AC 666 ms
69,764 KB
testcase_15 AC 657 ms
69,892 KB
testcase_16 AC 674 ms
69,772 KB
testcase_17 AC 663 ms
69,764 KB
testcase_18 AC 649 ms
69,768 KB
testcase_19 AC 668 ms
69,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod

mod = 10**9+7 #出力の制限
N = 5 * 10**5
g1 = [1, 1] # 元テーブル
g2 = [1, 1] #逆元テーブル
inverse = [0, 1] #逆元テーブル計算用テーブル

for i in range( 2, N + 1 ):
    g1.append( ( g1[-1] * i ) % mod )
    inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2.append( (g2[-1] * inverse[-1]) % mod )

N, M = map(int, input().split())

total = cmb(2*N, N, mod) * 2 * N
for _ in range(M):
    t, x, y = map(int, input().split())
    road = 2 * N - (x + y + 1)
    if t == 1:
        value1 = cmb(x+y, x, mod)
        value2 = cmb(road, N-y, mod)

    else:
        value1 = cmb(x+y, x, mod)
        value2 = cmb(road, N-x, mod)
    total -= value1 * value2
    total %= mod
print(total)




0