結果

問題 No.727 仲介人moko
ユーザー 0w10w1
提出日時 2018-08-25 07:50:54
言語 Ruby
(3.3.0)
結果
AC  
実行時間 411 ms / 1,000 ms
コード長 156 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-06-24 12:30:49
合計ジャッジ時間 6,628 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 87 ms
12,288 KB
testcase_02 AC 86 ms
12,288 KB
testcase_03 AC 96 ms
12,288 KB
testcase_04 AC 86 ms
12,288 KB
testcase_05 AC 86 ms
12,416 KB
testcase_06 AC 86 ms
12,288 KB
testcase_07 AC 87 ms
12,160 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 89 ms
12,416 KB
testcase_10 AC 90 ms
12,160 KB
testcase_11 AC 89 ms
12,288 KB
testcase_12 AC 89 ms
12,160 KB
testcase_13 AC 89 ms
12,160 KB
testcase_14 AC 234 ms
18,048 KB
testcase_15 AC 333 ms
20,224 KB
testcase_16 AC 208 ms
17,408 KB
testcase_17 AC 236 ms
17,920 KB
testcase_18 AC 187 ms
16,896 KB
testcase_19 AC 357 ms
21,248 KB
testcase_20 AC 239 ms
18,176 KB
testcase_21 AC 166 ms
16,256 KB
testcase_22 AC 155 ms
16,128 KB
testcase_23 AC 391 ms
21,888 KB
testcase_24 AC 411 ms
22,400 KB
testcase_25 AC 295 ms
19,584 KB
testcase_26 AC 343 ms
20,608 KB
testcase_27 AC 301 ms
19,584 KB
testcase_28 AC 94 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M = (1e9 + 7).to_i
n = gets.to_i
ans = (1..n).map { |i| i * 2 - 1 } .inject(1) { |o, e| o * e % M } * (1..n).inject(1) { |o, e| o * e % M }**2 % M
puts ans
0