結果

問題 No.1374 Absolute Game
ユーザー maimai
提出日時 2021-02-12 21:56:49
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 148 bytes
コンパイル時間 34 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-07-19 21:15:33
合計ジャッジ時間 4,553 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,160 KB
testcase_01 WA -
testcase_02 AC 78 ms
12,160 KB
testcase_03 AC 79 ms
12,160 KB
testcase_04 WA -
testcase_05 AC 81 ms
12,160 KB
testcase_06 AC 74 ms
12,160 KB
testcase_07 AC 74 ms
12,032 KB
testcase_08 AC 100 ms
14,720 KB
testcase_09 AC 134 ms
19,456 KB
testcase_10 AC 141 ms
20,096 KB
testcase_11 AC 112 ms
16,512 KB
testcase_12 AC 98 ms
15,104 KB
testcase_13 AC 126 ms
18,944 KB
testcase_14 AC 153 ms
22,912 KB
testcase_15 WA -
testcase_16 AC 157 ms
22,912 KB
testcase_17 WA -
testcase_18 AC 160 ms
22,784 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 118 ms
16,512 KB
testcase_22 AC 147 ms
22,272 KB
testcase_23 WA -
testcase_24 AC 93 ms
13,440 KB
testcase_25 AC 96 ms
13,696 KB
testcase_26 AC 102 ms
15,104 KB
testcase_27 AC 115 ms
16,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def lscan; gets.split.map(&:to_i); end
gets;p lscan.sort.reverse.each_slice(2).reduce([0,0]){|s,e|s[0]+=e[0];s[1]+=e[1]||0;s}.map(&:abs).reduce(&:-)
0