結果
問題 | No.1374 Absolute Game |
ユーザー | yuruhiya |
提出日時 | 2021-02-05 22:34:47 |
言語 | Crystal (1.11.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 623 bytes |
コンパイル時間 | 12,097 ms |
コンパイル使用メモリ | 295,392 KB |
実行使用メモリ | 10,132 KB |
最終ジャッジ日時 | 2024-07-02 13:10:31 |
合計ジャッジ時間 | 13,916 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 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 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
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 solve1(a) s = [0i64, 0i64] i = 0 until a.empty? s[i % 2] += a.pop i += 1 end s[0].abs - s[1].abs end def solve2(a) s = [0i64, 0i64] i = 0 until a.empty? if i.even? s[0] += a.pop else s[1] += a.shift end i += 1 end s[0].abs - s[1].abs end n = read_line.to_i a = read_line.split.map(&.to_i).sort puts [solve1(Deque.new(a)), solve1(Deque.new(a.reverse)), solve2(Deque.new(a)), solve2(Deque.new(a.reverse))].max