結果
問題 | No.1374 Absolute Game |
ユーザー | NatsubiSogan |
提出日時 | 2021-02-05 22:45:56 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 80 ms / 2,000 ms |
コード長 | 122 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,864 KB |
最終ジャッジ日時 | 2024-07-02 13:35:52 |
合計ジャッジ時間 | 2,439 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 26 |
ソースコード
n = int(input()) c = list(map(int, input().split())) c.sort() a, b = sum(c[::2]), sum(c[1::2]) print(abs(abs(a) - abs(b)))