結果

問題 No.1035 Color Box
ユーザー KodaiKodai
提出日時 2020-04-30 20:23:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 78,516 KB
最終ジャッジ日時 2024-12-17 15:23:47
合計ジャッジ時間 3,934 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
78,436 KB
testcase_01 AC 39 ms
53,884 KB
testcase_02 AC 40 ms
52,768 KB
testcase_03 AC 58 ms
68,244 KB
testcase_04 AC 60 ms
68,100 KB
testcase_05 AC 54 ms
65,252 KB
testcase_06 AC 42 ms
58,344 KB
testcase_07 AC 44 ms
59,444 KB
testcase_08 AC 127 ms
78,300 KB
testcase_09 AC 84 ms
76,448 KB
testcase_10 AC 38 ms
52,304 KB
testcase_11 AC 37 ms
52,484 KB
testcase_12 AC 38 ms
53,488 KB
testcase_13 AC 114 ms
77,484 KB
testcase_14 AC 123 ms
77,880 KB
testcase_15 AC 138 ms
78,440 KB
testcase_16 AC 37 ms
52,588 KB
testcase_17 AC 38 ms
52,764 KB
testcase_18 AC 38 ms
53,376 KB
testcase_19 AC 138 ms
78,516 KB
testcase_20 AC 39 ms
53,844 KB
testcase_21 AC 39 ms
52,132 KB
testcase_22 AC 39 ms
52,216 KB
testcase_23 AC 38 ms
53,740 KB
testcase_24 AC 38 ms
52,120 KB
testcase_25 AC 39 ms
52,268 KB
testcase_26 AC 38 ms
52,000 KB
testcase_27 AC 38 ms
52,620 KB
testcase_28 AC 39 ms
53,436 KB
testcase_29 AC 38 ms
53,628 KB
testcase_30 AC 39 ms
52,688 KB
testcase_31 AC 38 ms
52,192 KB
testcase_32 AC 38 ms
53,684 KB
testcase_33 AC 37 ms
53,352 KB
testcase_34 AC 39 ms
52,768 KB
testcase_35 AC 39 ms
52,936 KB
testcase_36 AC 38 ms
52,864 KB
testcase_37 AC 38 ms
53,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9 + 7
N, M = list(map(int, input().split()))


def modinv(a):
    return pow(a, MOD - 2, MOD)


temp_list = [1]
for i in range(0, (M // 2)):
    temp_list.append(int(((temp_list[-1] * ((M - i)) % MOD) * (modinv((i + 1))) % MOD)) % MOD)


before = 0
for i in range(1, M + 1):
    before = ((((temp_list[min([i, (M - i)])]) * pow(i, N, MOD)) % MOD) - before) % MOD

print(before % MOD)
0