結果

問題 No.118 門松列(2)
ユーザー wotsushiwotsushi
提出日時 2017-04-10 18:52:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 172 ms / 5,000 ms
コード長 190 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 22,784 KB
最終ジャッジ日時 2024-07-18 05:42:24
合計ジャッジ時間 4,727 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,288 KB
testcase_01 AC 172 ms
22,784 KB
testcase_02 AC 160 ms
22,400 KB
testcase_03 AC 163 ms
22,272 KB
testcase_04 AC 166 ms
22,656 KB
testcase_05 AC 165 ms
22,528 KB
testcase_06 AC 77 ms
12,160 KB
testcase_07 AC 76 ms
12,288 KB
testcase_08 AC 77 ms
12,160 KB
testcase_09 AC 159 ms
22,144 KB
testcase_10 AC 122 ms
14,920 KB
testcase_11 AC 120 ms
15,488 KB
testcase_12 AC 113 ms
15,232 KB
testcase_13 AC 109 ms
14,848 KB
testcase_14 AC 155 ms
21,760 KB
testcase_15 AC 108 ms
14,720 KB
testcase_16 AC 136 ms
15,616 KB
testcase_17 AC 112 ms
14,592 KB
testcase_18 AC 122 ms
15,616 KB
testcase_19 AC 138 ms
15,616 KB
testcase_20 AC 131 ms
15,488 KB
testcase_21 AC 147 ms
19,712 KB
testcase_22 AC 125 ms
15,056 KB
testcase_23 AC 151 ms
19,456 KB
testcase_24 AC 126 ms
15,872 KB
testcase_25 AC 134 ms
16,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
C = A.inject(Hash.new(0)) {|hash, a| hash[a] += 1; hash}
ans = (C.values.combination(3).map {|x, y, z| x * y * z}.inject(:+)) % (10**9 + 7)
puts ans
0