結果

問題 No.523 LED
ユーザー 0w10w1
提出日時 2017-08-09 02:29:55
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 123 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 19,236 KB
最終ジャッジ日時 2024-10-12 00:26:48
合計ジャッジ時間 4,237 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
18,980 KB
testcase_01 AC 86 ms
12,288 KB
testcase_02 AC 121 ms
12,160 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 88 ms
12,288 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

MOD = 1e9.to_i + 7
N = gets.to_i
f = (1..2 * N).inject { |a, b| a * b % MOD }
N.times do
  f = f * 500000004 % MOD
end
p f
0