結果

問題 No.727 仲介人moko
ユーザー koba-e964koba-e964
提出日時 2018-12-11 13:27:42
言語 Ruby
(3.3.0)
結果
AC  
実行時間 532 ms / 1,000 ms
コード長 69 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 11,892 KB
実行使用メモリ 16,184 KB
最終ジャッジ日時 2023-10-21 17:36:16
合計ジャッジ時間 7,653 ms
ジャッジサーバーID
(参考情報)
judge9 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
16,084 KB
testcase_01 AC 87 ms
16,084 KB
testcase_02 AC 89 ms
16,084 KB
testcase_03 AC 102 ms
16,180 KB
testcase_04 AC 89 ms
16,084 KB
testcase_05 AC 89 ms
16,084 KB
testcase_06 AC 89 ms
16,084 KB
testcase_07 AC 89 ms
16,084 KB
testcase_08 AC 88 ms
16,084 KB
testcase_09 AC 90 ms
16,084 KB
testcase_10 AC 89 ms
16,084 KB
testcase_11 AC 89 ms
16,080 KB
testcase_12 AC 90 ms
16,084 KB
testcase_13 AC 89 ms
16,084 KB
testcase_14 AC 284 ms
16,180 KB
testcase_15 AC 419 ms
16,180 KB
testcase_16 AC 250 ms
16,180 KB
testcase_17 AC 290 ms
16,184 KB
testcase_18 AC 226 ms
16,180 KB
testcase_19 AC 462 ms
16,180 KB
testcase_20 AC 293 ms
16,180 KB
testcase_21 AC 195 ms
16,180 KB
testcase_22 AC 178 ms
16,180 KB
testcase_23 AC 504 ms
16,180 KB
testcase_24 AC 532 ms
16,180 KB
testcase_25 AC 372 ms
16,180 KB
testcase_26 AC 437 ms
16,180 KB
testcase_27 AC 372 ms
16,180 KB
testcase_28 AC 98 ms
16,180 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
a=1
for i in 1..n
a*=(2*i-1)*i*i
a%=1000000007
end
puts a
0