結果
問題 | No.243 出席番号(2) |
ユーザー | ciel |
提出日時 | 2015-07-12 03:21:07 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 210 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 19,356 KB |
最終ジャッジ日時 | 2024-07-08 05:53:12 |
合計ジャッジ時間 | 26,459 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 75 ms
19,232 KB |
testcase_01 | AC | 76 ms
12,160 KB |
testcase_02 | AC | 78 ms
12,288 KB |
testcase_03 | AC | 208 ms
12,160 KB |
testcase_04 | AC | 207 ms
12,288 KB |
testcase_05 | AC | 205 ms
12,032 KB |
testcase_06 | AC | 209 ms
12,288 KB |
testcase_07 | AC | 205 ms
12,160 KB |
testcase_08 | AC | 600 ms
12,160 KB |
testcase_09 | AC | 594 ms
12,032 KB |
testcase_10 | AC | 595 ms
12,288 KB |
testcase_11 | AC | 592 ms
12,288 KB |
testcase_12 | AC | 608 ms
12,288 KB |
testcase_13 | AC | 1,241 ms
12,160 KB |
testcase_14 | AC | 1,241 ms
12,032 KB |
testcase_15 | AC | 1,238 ms
12,160 KB |
testcase_16 | AC | 1,251 ms
12,288 KB |
testcase_17 | AC | 1,255 ms
12,288 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
M=10**9+7 c=[0]*5000 N=gets.to_i $<.map{|e|c[e.to_i]+=1} a=[1]+[0]*N p=[1]+[0]*N N.times{|i| p[i+1]=p[i]*(i+1)%M N.downto(1){|j|a[j]=(a[j]+a[j-1]*c[i])%M} } r=0 0.upto(N){|i|r=(r+(-1)**(i%2)*a[i]*p[N-i])%M} p r