結果

問題 No.2835 Take and Flip
ユーザー QiToY
提出日時 2024-08-25 13:19:37
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 920 bytes
コンパイル時間 12,616 ms
コンパイル使用メモリ 401,664 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 13:19:54
合計ジャッジ時間 16,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(unused_imports)]

fn main() {
    input! {
        n: usize,
        mut a: [i64; n],
    }
    a.sort();
    let y = -a[..n / 2].iter().sum::<i64>();
    let x = a[n / 2..].iter().sum::<i64>();
    println!("{}", x - y);
}

use proconio::{input, marker::*};
use std::{cmp::Reverse, collections::*};

#[macro_export]
macro_rules! chmax {
    ($a:expr, $b:expr) => {{
        let tmp = $b;
        if $a < tmp {
            $a = tmp;
            true
        } else {
            false
        }
    }};
}

#[macro_export]
macro_rules! chmin {
    ($a:expr, $b:expr) => {{
        let tmp = $b;
        if $a > tmp {
            $a = tmp;
            true
        } else {
            false
        }
    }};
}

#[macro_export]
/// mvec![]
macro_rules! mvec {
    ($val:expr; ()) => {
        $val
    };
    ($val:expr; ($size:expr $(,$rest:expr)*)) => {
        vec![mvec![$val; ($($rest),*)]; $size]
    };
}
0