結果

問題 No.243 出席番号(2)
ユーザー cielciel
提出日時 2018-02-10 03:46:13
言語 Crystal
(1.11.2)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 11,522 ms
コンパイル使用メモリ 295,704 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 19:25:43
合計ジャッジ時間 14,442 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,812 KB
testcase_03 AC 7 ms
6,944 KB
testcase_04 AC 8 ms
6,944 KB
testcase_05 AC 8 ms
6,944 KB
testcase_06 AC 8 ms
6,940 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 24 ms
6,944 KB
testcase_09 AC 25 ms
6,940 KB
testcase_10 AC 25 ms
6,944 KB
testcase_11 AC 25 ms
6,944 KB
testcase_12 AC 25 ms
6,944 KB
testcase_13 AC 53 ms
6,940 KB
testcase_14 AC 53 ms
6,940 KB
testcase_15 AC 53 ms
6,940 KB
testcase_16 AC 53 ms
6,940 KB
testcase_17 AC 54 ms
6,944 KB
testcase_18 AC 93 ms
6,940 KB
testcase_19 AC 93 ms
6,940 KB
testcase_20 AC 93 ms
6,944 KB
testcase_21 AC 94 ms
6,940 KB
testcase_22 AC 93 ms
6,940 KB
testcase_23 AC 144 ms
6,944 KB
testcase_24 AC 145 ms
6,940 KB
testcase_25 AC 145 ms
6,940 KB
testcase_26 AC 144 ms
6,940 KB
testcase_27 AC 143 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=10**9+7
c=[0]*5000
r=0_i64
n=gets.not_nil!.to_i
n.times{c[gets.not_nil!.to_i]+=1}
a=[1_i64]+[0_i64]*n
f=a.dup
n.times{|i|f[i+1]=f[i]*-~i%M
n.downto(1){|j|a[j]=(a[j]+a[j-1]*c[i])%M}}
0.upto(n){|i|r=(r+a[i]*(-1)**(i%2)*f[n-i])%M}
puts r
0