結果

問題 No.1102 Remnants
ユーザー tyawanmusityawanmusi
提出日時 2020-07-03 21:57:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,096 ms / 2,000 ms
コード長 132 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 32,620 KB
最終ジャッジ日時 2024-09-17 00:44:23
合計ジャッジ時間 11,891 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,368 KB
testcase_05 AC 858 ms
25,504 KB
testcase_06 AC 167 ms
13,504 KB
testcase_07 AC 1,096 ms
32,620 KB
testcase_08 AC 45 ms
10,880 KB
testcase_09 AC 73 ms
11,392 KB
testcase_10 AC 34 ms
10,752 KB
testcase_11 AC 60 ms
11,264 KB
testcase_12 AC 78 ms
11,392 KB
testcase_13 AC 74 ms
11,392 KB
testcase_14 AC 489 ms
19,012 KB
testcase_15 AC 392 ms
17,028 KB
testcase_16 AC 986 ms
27,104 KB
testcase_17 AC 947 ms
26,512 KB
testcase_18 AC 931 ms
29,460 KB
testcase_19 AC 334 ms
16,792 KB
testcase_20 AC 121 ms
12,672 KB
testcase_21 AC 566 ms
21,872 KB
testcase_22 AC 796 ms
26,892 KB
testcase_23 AC 616 ms
23,088 KB
testcase_24 AC 460 ms
19,252 KB
testcase_25 AC 952 ms
29,824 KB
testcase_26 AC 82 ms
11,776 KB
testcase_27 AC 268 ms
15,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,*a=map(int,open(0).read().split());m=10**9+7;d=1
for i in range(1,n):d=d*(k+i)*pow(i,m-2,m)%m;a[i]*=d;a[-i-1]*=d
print(sum(a)%m)
0