結果

問題 No.1374 Absolute Game
ユーザー yuruhiyayuruhiya
提出日時 2021-02-06 07:27:50
言語 Crystal
(1.11.2)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 14,530 ms
コンパイル使用メモリ 295,916 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-07-02 15:25:36
合計ジャッジ時間 15,955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 23 ms
8,064 KB
testcase_10 AC 26 ms
8,832 KB
testcase_11 AC 17 ms
6,784 KB
testcase_12 AC 11 ms
5,376 KB
testcase_13 AC 21 ms
8,064 KB
testcase_14 AC 31 ms
10,240 KB
testcase_15 AC 32 ms
10,496 KB
testcase_16 AC 32 ms
10,368 KB
testcase_17 AC 32 ms
10,368 KB
testcase_18 AC 32 ms
10,368 KB
testcase_19 AC 32 ms
10,368 KB
testcase_20 AC 11 ms
5,504 KB
testcase_21 AC 16 ms
6,528 KB
testcase_22 AC 28 ms
9,088 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 6 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 10 ms
5,376 KB
testcase_27 AC 14 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

def solve(a)
  s = [0i64, 0i64]
  i = 0
  until a.empty?
    s[i % 2] += a.pop
    i += 1
  end
  s[0].abs - s[1].abs
end

n = read_line.to_i
a = read_line.split.map(&.to_i64)
a.map! { |i| -i } if a.sum < 0
a.sort!
puts solve(a)
0