結果

問題 No.723 2つの数の和
ユーザー letrangerjpletrangerjp
提出日時 2018-08-03 22:51:22
言語 Ruby
(3.3.0)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 151 bytes
コンパイル時間 34 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 35,328 KB
最終ジャッジ日時 2024-09-19 17:34:37
合計ジャッジ時間 4,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,288 KB
testcase_01 AC 76 ms
12,288 KB
testcase_02 AC 76 ms
12,032 KB
testcase_03 AC 148 ms
25,344 KB
testcase_04 AC 173 ms
28,544 KB
testcase_05 AC 163 ms
27,392 KB
testcase_06 AC 165 ms
28,160 KB
testcase_07 AC 122 ms
17,536 KB
testcase_08 AC 127 ms
19,540 KB
testcase_09 AC 171 ms
28,672 KB
testcase_10 AC 120 ms
17,408 KB
testcase_11 AC 86 ms
13,184 KB
testcase_12 AC 131 ms
20,180 KB
testcase_13 AC 173 ms
29,184 KB
testcase_14 AC 107 ms
16,256 KB
testcase_15 AC 124 ms
19,200 KB
testcase_16 AC 141 ms
24,320 KB
testcase_17 AC 161 ms
26,624 KB
testcase_18 AC 121 ms
19,200 KB
testcase_19 AC 119 ms
19,456 KB
testcase_20 AC 77 ms
12,032 KB
testcase_21 AC 81 ms
12,288 KB
testcase_22 AC 76 ms
12,288 KB
testcase_23 AC 205 ms
35,328 KB
testcase_24 AC 107 ms
16,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, X = gets.split.map &:to_i
A = gets.split.map &:to_i
h = A.group_by(&:itself).map{|k, v|[k, v.size]}.to_h
p h.map{|k, v|
  v * (h[X - k] || 0)
}.sum
0