結果

問題 No.1686 Geschenkt
ユーザー
提出日時 2024-05-02 18:51:07
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 17,773 ms
コンパイル使用メモリ 376,852 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-23 12:38:39
合計ジャッジ時間 17,899 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
	let mut s = String::new();
	std::io::stdin().read_to_string(&mut s).ok();
	let mut a: Vec<u16> = s.split_whitespace().flat_map(str::parse).collect();
	a[0] = 0;
	a.sort();
	let s: u16 = a
		.windows(2)
		.map(|x| if x[1] - x[0] == 1 { 0 } else { x[1] })
		.sum();
	println!("{}", s)
}
0