結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,032 KB
testcase_01 WA -
testcase_02 AC 77 ms
12,032 KB
testcase_03 AC 75 ms
12,032 KB
testcase_04 WA -
testcase_05 AC 75 ms
12,288 KB
testcase_06 AC 76 ms
11,904 KB
testcase_07 AC 75 ms
12,160 KB
testcase_08 AC 93 ms
14,080 KB
testcase_09 AC 122 ms
18,176 KB
testcase_10 AC 130 ms
19,072 KB
testcase_11 AC 112 ms
16,512 KB
testcase_12 AC 94 ms
14,336 KB
testcase_13 AC 116 ms
17,408 KB
testcase_14 AC 137 ms
20,736 KB
testcase_15 WA -
testcase_16 AC 136 ms
20,608 KB
testcase_17 WA -
testcase_18 AC 138 ms
20,992 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 112 ms
16,256 KB
testcase_22 AC 146 ms
20,736 KB
testcase_23 WA -
testcase_24 AC 85 ms
13,056 KB
testcase_25 AC 88 ms
13,312 KB
testcase_26 AC 96 ms
14,208 KB
testcase_27 AC 101 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