結果

問題 No.723 2つの数の和
ユーザー YoteichiYoteichi
提出日時 2018-08-04 04:22:13
言語 Ruby
(3.3.0)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 35,328 KB
最終ジャッジ日時 2024-09-19 17:43:18
合計ジャッジ時間 4,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,288 KB
testcase_01 AC 78 ms
12,288 KB
testcase_02 AC 74 ms
12,160 KB
testcase_03 AC 150 ms
25,088 KB
testcase_04 AC 180 ms
28,800 KB
testcase_05 AC 172 ms
27,392 KB
testcase_06 AC 169 ms
28,032 KB
testcase_07 AC 125 ms
19,456 KB
testcase_08 AC 130 ms
21,120 KB
testcase_09 AC 174 ms
28,800 KB
testcase_10 AC 123 ms
19,328 KB
testcase_11 AC 86 ms
13,440 KB
testcase_12 AC 138 ms
22,656 KB
testcase_13 AC 184 ms
29,184 KB
testcase_14 AC 109 ms
16,640 KB
testcase_15 AC 128 ms
20,736 KB
testcase_16 AC 151 ms
24,320 KB
testcase_17 AC 170 ms
26,624 KB
testcase_18 AC 123 ms
19,328 KB
testcase_19 AC 122 ms
19,200 KB
testcase_20 AC 79 ms
12,160 KB
testcase_21 AC 76 ms
12,288 KB
testcase_22 AC 78 ms
12,032 KB
testcase_23 AC 204 ms
35,328 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
if table[x.fdiv(2)]
    if table[x/2] == 1
        count += 1
    else
        count += table[x/2]**2 - table[x/2]
    end
end
table.keys.each do |k|
    if table[x.fdiv(2)] && table[x/2] == k
        next
    end
    if x - k < 0
        next
    end
    count += table[k] * (table[x - k] || 0)
end
puts count
0