結果

問題 No.723 2つの数の和
ユーザー urutomurutom
提出日時 2019-04-04 17:25:56
言語 Ruby
(3.4.1)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 24,704 KB
最終ジャッジ日時 2024-12-26 00:22:00
合計ジャッジ時間 5,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
12,032 KB
testcase_01 AC 104 ms
12,032 KB
testcase_02 AC 108 ms
12,160 KB
testcase_03 AC 169 ms
19,840 KB
testcase_04 AC 191 ms
21,248 KB
testcase_05 AC 190 ms
20,736 KB
testcase_06 AC 191 ms
20,864 KB
testcase_07 AC 135 ms
15,744 KB
testcase_08 AC 147 ms
17,536 KB
testcase_09 AC 193 ms
21,376 KB
testcase_10 AC 144 ms
15,488 KB
testcase_11 AC 119 ms
12,544 KB
testcase_12 AC 149 ms
17,920 KB
testcase_13 AC 199 ms
21,120 KB
testcase_14 AC 125 ms
14,208 KB
testcase_15 AC 145 ms
17,152 KB
testcase_16 AC 168 ms
19,200 KB
testcase_17 AC 177 ms
20,352 KB
testcase_18 AC 172 ms
18,560 KB
testcase_19 AC 176 ms
18,560 KB
testcase_20 AC 104 ms
12,160 KB
testcase_21 AC 106 ms
12,160 KB
testcase_22 AC 105 ms
12,032 KB
testcase_23 AC 198 ms
24,704 KB
testcase_24 AC 130 ms
14,720 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