結果

問題 No.1581 Multiple Sequence
ユーザー yuruhiyayuruhiya
提出日時 2021-07-02 22:13:20
言語 Ruby
(3.3.0)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 78 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-06-29 11:48:59
合計ジャッジ時間 5,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,288 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 238 ms
17,664 KB
testcase_03 AC 252 ms
18,432 KB
testcase_04 AC 133 ms
13,440 KB
testcase_05 AC 261 ms
19,200 KB
testcase_06 AC 165 ms
14,976 KB
testcase_07 AC 132 ms
13,056 KB
testcase_08 AC 147 ms
13,696 KB
testcase_09 AC 242 ms
18,048 KB
testcase_10 AC 192 ms
15,872 KB
testcase_11 AC 112 ms
12,544 KB
testcase_12 AC 152 ms
14,464 KB
testcase_13 AC 87 ms
12,288 KB
testcase_14 AC 251 ms
18,688 KB
testcase_15 AC 207 ms
16,896 KB
testcase_16 AC 116 ms
12,672 KB
testcase_17 AC 271 ms
19,456 KB
testcase_18 AC 106 ms
12,160 KB
testcase_19 AC 232 ms
17,536 KB
testcase_20 AC 240 ms
17,792 KB
testcase_21 AC 257 ms
18,560 KB
testcase_22 AC 184 ms
15,104 KB
testcase_23 AC 275 ms
19,584 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: `*' interpreted as argument prefix
Syntax OK

ソースコード

diff #

m=eval *$<
d=[1]*-~m
(2..m).map{|x|x.step(m,x){d[_1]+=d[x-1]}}
p d[m].%10**9+7
0