結果

問題 No.1374 Absolute Game
ユーザー yuruhiyayuruhiya
提出日時 2021-02-06 15:25:55
言語 Ruby
(3.3.0)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 43 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-07-03 00:32:42
合計ジャッジ時間 4,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 91 ms
12,288 KB
testcase_03 AC 91 ms
12,288 KB
testcase_04 AC 90 ms
12,288 KB
testcase_05 AC 92 ms
12,160 KB
testcase_06 AC 90 ms
12,160 KB
testcase_07 AC 88 ms
12,160 KB
testcase_08 AC 114 ms
14,976 KB
testcase_09 AC 151 ms
19,968 KB
testcase_10 AC 158 ms
21,248 KB
testcase_11 AC 135 ms
16,768 KB
testcase_12 AC 116 ms
15,488 KB
testcase_13 AC 141 ms
19,328 KB
testcase_14 AC 175 ms
22,784 KB
testcase_15 AC 166 ms
22,912 KB
testcase_16 AC 171 ms
22,912 KB
testcase_17 AC 168 ms
22,784 KB
testcase_18 AC 170 ms
23,040 KB
testcase_19 AC 169 ms
22,912 KB
testcase_20 AC 119 ms
15,872 KB
testcase_21 AC 133 ms
16,896 KB
testcase_22 AC 164 ms
22,528 KB
testcase_23 AC 99 ms
12,928 KB
testcase_24 AC 102 ms
13,696 KB
testcase_25 AC 106 ms
13,952 KB
testcase_26 AC 115 ms
15,360 KB
testcase_27 AC 131 ms
16,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a=[*$<][1].split.map(&:to_i).sort
a<<0 if a.size.odd?
p a.each_slice(2).to_a.transpose.map{_1.sum.abs}.then{_1-_2}.abs
0