結果

問題 No.1374 Absolute Game
ユーザー simansiman
提出日時 2021-03-23 11:24:28
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 209 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-05-03 22:16:44
合計ジャッジ時間 4,215 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 WA -
testcase_02 AC 77 ms
12,288 KB
testcase_03 AC 76 ms
12,288 KB
testcase_04 WA -
testcase_05 AC 79 ms
12,160 KB
testcase_06 AC 78 ms
12,160 KB
testcase_07 AC 79 ms
12,160 KB
testcase_08 AC 95 ms
14,208 KB
testcase_09 AC 122 ms
18,304 KB
testcase_10 AC 127 ms
19,072 KB
testcase_11 AC 113 ms
16,512 KB
testcase_12 AC 96 ms
14,592 KB
testcase_13 AC 118 ms
17,664 KB
testcase_14 AC 143 ms
20,864 KB
testcase_15 WA -
testcase_16 AC 138 ms
20,992 KB
testcase_17 WA -
testcase_18 AC 142 ms
20,864 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 111 ms
16,384 KB
testcase_22 AC 143 ms
20,864 KB
testcase_23 WA -
testcase_24 AC 87 ms
13,184 KB
testcase_25 AC 90 ms
13,312 KB
testcase_26 AC 99 ms
14,592 KB
testcase_27 AC 110 ms
15,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
C = gets.split.map(&:to_i).sort.reverse
S = C.sum

if S < 0
  N.times do |i|
    C[i] = -1 * C[i]
  end
end

a = 0
b = 0

C.each_slice(2) do |x, y|
  a += x
  b += y if y
end

puts a.abs - b.abs
0