結果

問題 No.766 金魚すくい
ユーザー cielciel
提出日時 2018-12-24 01:59:24
言語 Ruby
(3.3.0)
結果
AC  
実行時間 671 ms / 1,500 ms
コード長 332 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 32,128 KB
最終ジャッジ日時 2024-09-25 10:54:07
合計ジャッジ時間 14,337 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,288 KB
testcase_01 AC 84 ms
12,288 KB
testcase_02 AC 85 ms
12,288 KB
testcase_03 AC 85 ms
12,288 KB
testcase_04 AC 85 ms
12,032 KB
testcase_05 AC 85 ms
12,160 KB
testcase_06 AC 85 ms
12,416 KB
testcase_07 AC 84 ms
12,032 KB
testcase_08 AC 84 ms
12,160 KB
testcase_09 AC 85 ms
12,288 KB
testcase_10 AC 85 ms
12,160 KB
testcase_11 AC 86 ms
12,288 KB
testcase_12 AC 87 ms
12,160 KB
testcase_13 AC 96 ms
12,416 KB
testcase_14 AC 99 ms
12,544 KB
testcase_15 AC 96 ms
12,288 KB
testcase_16 AC 97 ms
12,416 KB
testcase_17 AC 96 ms
12,416 KB
testcase_18 AC 94 ms
12,288 KB
testcase_19 AC 97 ms
12,416 KB
testcase_20 AC 94 ms
12,416 KB
testcase_21 AC 88 ms
12,160 KB
testcase_22 AC 98 ms
12,416 KB
testcase_23 AC 633 ms
28,928 KB
testcase_24 AC 394 ms
27,904 KB
testcase_25 AC 671 ms
30,720 KB
testcase_26 AC 636 ms
28,672 KB
testcase_27 AC 662 ms
30,720 KB
testcase_28 AC 626 ms
28,672 KB
testcase_29 AC 612 ms
28,544 KB
testcase_30 AC 618 ms
28,544 KB
testcase_31 AC 644 ms
32,128 KB
testcase_32 AC 619 ms
28,800 KB
testcase_33 AC 366 ms
25,344 KB
testcase_34 AC 364 ms
25,472 KB
testcase_35 AC 314 ms
16,384 KB
testcase_36 AC 305 ms
16,256 KB
testcase_37 AC 399 ms
25,600 KB
testcase_38 AC 403 ms
27,904 KB
testcase_39 AC 399 ms
26,240 KB
testcase_40 AC 393 ms
25,984 KB
testcase_41 AC 653 ms
30,720 KB
testcase_42 AC 638 ms
27,264 KB
testcase_43 AC 86 ms
12,160 KB
testcase_44 AC 87 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M=10**9+7;I=[1,1];*F=I;*R=I;N,K,P,*V=$<.read.split.map &:to_i;V.sort!
2.upto([N+K,100].max){|i|I<<z=(M-M/i)*I[M%i]%M;F<<i*F[-1]%M;R<<z*R[-1]%M}
Q=(100-P)*I[100]%M
P=P*I[100]%M
r=s=0
N.times{|i|r=(r+P.pow(K,M)*Q.pow(i,M)*F[K+i-1]*R[i]*R[K-1]*s)%M;s=(s+V[N-i-1])%M}
K.times{|i|r=(r+P.pow(i,M)*Q.pow(N,M)*F[N+i-1]*R[i]*R[N-1]*s)%M}
p r
0