結果

問題 No.723 2つの数の和
ユーザー koi_kotyakoi_kotya
提出日時 2018-08-04 06:43:14
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 193 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-09-19 17:45:10
合計ジャッジ時間 3,650 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,672 KB
testcase_01 AC 82 ms
12,672 KB
testcase_02 AC 81 ms
12,800 KB
testcase_03 AC 120 ms
17,792 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 127 ms
19,456 KB
testcase_07 AC 102 ms
15,616 KB
testcase_08 AC 106 ms
16,000 KB
testcase_09 AC 131 ms
19,968 KB
testcase_10 RE -
testcase_11 AC 90 ms
13,184 KB
testcase_12 AC 111 ms
16,640 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 127 ms
19,328 KB
testcase_19 RE -
testcase_20 AC 83 ms
12,800 KB
testcase_21 AC 82 ms
12,928 KB
testcase_22 AC 80 ms
12,800 KB
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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