結果

問題 No.1035 Color Box
ユーザー pluto77pluto77
提出日時 2020-06-14 15:37:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 75,600 KB
最終ジャッジ日時 2024-06-27 11:05:58
合計ジャッジ時間 4,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
75,376 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
51,952 KB
testcase_03 AC 57 ms
63,636 KB
testcase_04 AC 60 ms
64,508 KB
testcase_05 AC 52 ms
63,020 KB
testcase_06 AC 40 ms
54,096 KB
testcase_07 AC 39 ms
53,820 KB
testcase_08 AC 162 ms
75,432 KB
testcase_09 AC 92 ms
69,156 KB
testcase_10 AC 37 ms
52,884 KB
testcase_11 AC 38 ms
52,692 KB
testcase_12 AC 37 ms
52,240 KB
testcase_13 AC 140 ms
75,512 KB
testcase_14 AC 155 ms
75,600 KB
testcase_15 AC 180 ms
75,468 KB
testcase_16 AC 37 ms
53,184 KB
testcase_17 AC 37 ms
52,168 KB
testcase_18 AC 37 ms
52,632 KB
testcase_19 AC 176 ms
75,364 KB
testcase_20 AC 38 ms
53,404 KB
testcase_21 AC 37 ms
52,304 KB
testcase_22 AC 37 ms
52,684 KB
testcase_23 AC 37 ms
52,392 KB
testcase_24 AC 37 ms
51,504 KB
testcase_25 AC 37 ms
52,432 KB
testcase_26 AC 38 ms
52,416 KB
testcase_27 AC 37 ms
52,244 KB
testcase_28 AC 37 ms
52,312 KB
testcase_29 AC 37 ms
53,916 KB
testcase_30 AC 38 ms
53,036 KB
testcase_31 AC 37 ms
52,156 KB
testcase_32 AC 37 ms
51,620 KB
testcase_33 AC 37 ms
51,940 KB
testcase_34 AC 37 ms
52,800 KB
testcase_35 AC 37 ms
52,796 KB
testcase_36 AC 37 ms
53,392 KB
testcase_37 AC 36 ms
52,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1035
mod=10**9+7
n,m=map(int,input().split())
res=0
c=1
for i in range(m+1):
 t=pow(i,n,mod)
 if (m+i)%2:
  t=mod-t
 res+=t*c
 c*=(m-i)*pow(i+1,mod-2,mod)
 c%=mod
print(res%mod)
0