結果

問題 No.723 2つの数の和
ユーザー maimai
提出日時 2018-08-03 22:37:58
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 540 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-09-19 17:31:11
合計ジャッジ時間 4,048 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,288 KB
testcase_01 AC 82 ms
12,160 KB
testcase_02 AC 79 ms
12,288 KB
testcase_03 AC 139 ms
18,176 KB
testcase_04 AC 157 ms
20,992 KB
testcase_05 AC 154 ms
20,224 KB
testcase_06 AC 157 ms
20,736 KB
testcase_07 AC 113 ms
15,488 KB
testcase_08 AC 117 ms
16,000 KB
testcase_09 WA -
testcase_10 AC 115 ms
15,104 KB
testcase_11 AC 92 ms
12,544 KB
testcase_12 AC 124 ms
16,768 KB
testcase_13 AC 165 ms
21,248 KB
testcase_14 AC 103 ms
14,208 KB
testcase_15 AC 114 ms
15,616 KB
testcase_16 AC 134 ms
17,536 KB
testcase_17 AC 148 ms
19,584 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 82 ms
12,160 KB
testcase_21 AC 78 ms
12,160 KB
testcase_22 AC 79 ms
12,416 KB
testcase_23 AC 154 ms
22,016 KB
testcase_24 AC 105 ms
14,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

def ascan; gets.split.map(&:to_i); end

n,X = ascan
A = ascan.sort

cc = []
aa = []
A.each do |a|
    if aa.empty? || aa[-1] != a
        cc << 1
        aa << a
    else
        cc[-1] += 1
    end
end

N = aa.size

left = 0
right = N-1

ans = 0
while left < right

    if aa[left] + aa[right] > X
        right -= 1
    elsif aa[left] + aa[right] < X
        left += 1
    else
        ans += cc[left]*cc[right]
        right -= 1
    end
end

ans *= 2

aa.each_with_index do |a,i|
    if a*2 == X
        ans += cc[i]
    end
end

p ans
0