結果

問題 No.723 2つの数の和
ユーザー YoteichiYoteichi
提出日時 2018-08-04 05:23:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-09-19 17:44:08
合計ジャッジ時間 4,277 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 78 ms
12,160 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 158 ms
24,832 KB
testcase_04 AC 179 ms
28,160 KB
testcase_05 AC 170 ms
26,880 KB
testcase_06 AC 179 ms
27,776 KB
testcase_07 AC 133 ms
19,328 KB
testcase_08 AC 135 ms
21,376 KB
testcase_09 AC 181 ms
28,416 KB
testcase_10 AC 125 ms
18,944 KB
testcase_11 AC 88 ms
13,440 KB
testcase_12 AC 138 ms
22,272 KB
testcase_13 AC 177 ms
28,672 KB
testcase_14 AC 110 ms
16,640 KB
testcase_15 AC 132 ms
20,736 KB
testcase_16 AC 148 ms
23,936 KB
testcase_17 AC 167 ms
26,112 KB
testcase_18 AC 128 ms
19,456 KB
testcase_19 AC 131 ms
19,328 KB
testcase_20 AC 80 ms
12,160 KB
testcase_21 AC 79 ms
12,160 KB
testcase_22 AC 80 ms
12,032 KB
testcase_23 AC 202 ms
34,432 KB
testcase_24 AC 113 ms
17,664 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)
table = a.group_by(&:itself).map { |k,v| [k,v.size] }.to_h
count = 0
table.each_key do |k|
    count += table[k] * (table[x - k] || 0)
end
puts count
0