結果

問題 No.723 2つの数の和
ユーザー smz_8110smz_8110
提出日時 2018-08-14 14:28:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 24,832 KB
最終ジャッジ日時 2024-09-24 08:45:54
合計ジャッジ時間 4,969 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,288 KB
testcase_01 AC 86 ms
12,288 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 146 ms
19,712 KB
testcase_04 AC 164 ms
21,760 KB
testcase_05 AC 161 ms
21,120 KB
testcase_06 AC 158 ms
21,632 KB
testcase_07 AC 117 ms
16,256 KB
testcase_08 AC 121 ms
17,536 KB
testcase_09 AC 158 ms
21,888 KB
testcase_10 AC 119 ms
16,128 KB
testcase_11 AC 95 ms
12,672 KB
testcase_12 AC 127 ms
18,176 KB
testcase_13 AC 171 ms
22,272 KB
testcase_14 AC 107 ms
14,464 KB
testcase_15 AC 123 ms
17,408 KB
testcase_16 AC 146 ms
19,456 KB
testcase_17 AC 159 ms
21,120 KB
testcase_18 AC 136 ms
18,560 KB
testcase_19 AC 138 ms
18,688 KB
testcase_20 AC 87 ms
12,160 KB
testcase_21 AC 87 ms
12,288 KB
testcase_22 AC 86 ms
12,160 KB
testcase_23 AC 175 ms
24,832 KB
testcase_24 AC 112 ms
15,104 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N,X=gets.split.map &:to_i
h={}
gets.split.map(&:to_i).each{|n|h[n]=(h[n]||0)+1}
c=0
h.keys.sort.each{|n|
  break if n>X/2
  if h[m=X-n]
    c+=h[n]*h[m]*(2-1[n-m])
  end
}
p c
0