結果

問題 No.118 門松列(2)
ユーザー gigurururugigurururu
提出日時 2015-01-07 00:17:02
言語 Ruby
(3.3.0)
結果
AC  
実行時間 273 ms / 5,000 ms
コード長 115 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 21,248 KB
最終ジャッジ日時 2024-06-07 18:23:49
合計ジャッジ時間 6,826 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,288 KB
testcase_01 AC 273 ms
21,248 KB
testcase_02 AC 271 ms
20,736 KB
testcase_03 AC 273 ms
20,864 KB
testcase_04 AC 268 ms
21,120 KB
testcase_05 AC 267 ms
20,992 KB
testcase_06 AC 86 ms
12,160 KB
testcase_07 AC 83 ms
12,288 KB
testcase_08 AC 79 ms
12,032 KB
testcase_09 AC 269 ms
20,480 KB
testcase_10 AC 230 ms
13,312 KB
testcase_11 AC 226 ms
14,336 KB
testcase_12 AC 224 ms
13,184 KB
testcase_13 AC 223 ms
13,056 KB
testcase_14 AC 265 ms
20,352 KB
testcase_15 AC 212 ms
12,544 KB
testcase_16 AC 234 ms
17,152 KB
testcase_17 AC 228 ms
12,672 KB
testcase_18 AC 226 ms
14,464 KB
testcase_19 AC 236 ms
16,000 KB
testcase_20 AC 240 ms
16,384 KB
testcase_21 AC 251 ms
18,048 KB
testcase_22 AC 223 ms
13,440 KB
testcase_23 AC 243 ms
17,792 KB
testcase_24 AC 231 ms
14,848 KB
testcase_25 AC 239 ms
15,104 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
a=gets.split.group_by{|i|i}
p a.keys.combination(3).inject(0){|s,r|s+r.inject(1){|t,i|t*a[i].size}}%1000000007
0