結果
問題 | No.723 2つの数の和 |
ユーザー | gemmaro |
提出日時 | 2020-04-25 09:24:22 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 388 bytes |
コンパイル時間 | 410 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 29,092 KB |
最終ジャッジ日時 | 2024-11-06 17:09:47 |
合計ジャッジ時間 | 6,399 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 85 ms
12,288 KB |
testcase_01 | AC | 85 ms
12,288 KB |
testcase_02 | AC | 85 ms
12,160 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 270 ms
26,616 KB |
testcase_14 | AC | 138 ms
16,128 KB |
testcase_15 | AC | 173 ms
18,560 KB |
testcase_16 | AC | 215 ms
22,400 KB |
testcase_17 | AC | 250 ms
24,216 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 86 ms
12,288 KB |
testcase_21 | AC | 85 ms
12,288 KB |
testcase_22 | AC | 87 ms
12,032 KB |
testcase_23 | AC | 350 ms
29,092 KB |
testcase_24 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
# frozen_string_literal: true N, X = gets.chomp.split.map(&:to_i) A = gets.chomp.split.map(&:to_i) c = {} A.each do |a| c[a] ||= 0 c[a] += 1 end C = c B = A.uniq.sort R = (0..(B.size - 1)).map do |i| s = X - B[i] j = B[i..(N - 1)].bsearch_index { |x| x >= s } if j.nil? || B[i + j] != s 0 elsif j.zero? C[s] else C[s] * 2 end end RESULT = R.sum puts RESULT