結果

問題 No.723 2つの数の和
ユーザー urutomurutom
提出日時 2019-04-04 17:25:56
言語 Ruby
(3.3.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 24,832 KB
最終ジャッジ日時 2024-06-07 16:59:09
合計ジャッジ時間 4,134 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,416 KB
testcase_01 AC 83 ms
12,032 KB
testcase_02 AC 82 ms
12,160 KB
testcase_03 AC 138 ms
19,712 KB
testcase_04 AC 150 ms
21,248 KB
testcase_05 AC 150 ms
20,480 KB
testcase_06 AC 151 ms
21,248 KB
testcase_07 AC 109 ms
16,000 KB
testcase_08 AC 114 ms
17,408 KB
testcase_09 AC 154 ms
21,504 KB
testcase_10 AC 108 ms
15,616 KB
testcase_11 AC 87 ms
12,928 KB
testcase_12 AC 116 ms
18,304 KB
testcase_13 AC 166 ms
21,504 KB
testcase_14 AC 98 ms
14,464 KB
testcase_15 AC 109 ms
17,280 KB
testcase_16 AC 130 ms
19,200 KB
testcase_17 AC 143 ms
20,608 KB
testcase_18 AC 139 ms
18,560 KB
testcase_19 AC 141 ms
18,432 KB
testcase_20 AC 82 ms
12,160 KB
testcase_21 AC 80 ms
12,032 KB
testcase_22 AC 81 ms
12,288 KB
testcase_23 AC 154 ms
24,832 KB
testcase_24 AC 103 ms
14,976 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n,x=gets.split.map(&:to_i)
a=gets.split.map(&:to_i)
h=Hash.new(0)
a.each{|v|h[v]+=1}
ans=0
a.each{|v|ans+=h[x-v]}

puts ans
0