結果

問題 No.723 2つの数の和
ユーザー koi_kotyakoi_kotya
提出日時 2018-08-03 23:00:21
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-09-19 17:37:37
合計ジャッジ時間 5,692 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
17,664 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 152 ms
19,968 KB
testcase_04 AC 185 ms
22,016 KB
testcase_05 AC 195 ms
21,248 KB
testcase_06 AC 168 ms
21,632 KB
testcase_07 AC 125 ms
16,000 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 137 ms
15,872 KB
testcase_11 AC 107 ms
12,800 KB
testcase_12 AC 131 ms
18,560 KB
testcase_13 TLE -
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 #

n,x = gets.chomp.split(" ").map(&:to_i)
a = gets.chomp.split(" ").map(&:to_i)
c = Hash.new(0)
ans = 0
for i in 0..n-1
  c[a[i]] += 1
end
for i in 1..x-1
  ans += c[i]*c[x-i]
end
puts ans
0