結果

問題 No.2154 あさかつの参加人数
ユーザー ⁣
提出日時 2024-07-12 21:57:34
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 16,686 ms
コンパイル使用メモリ 402,384 KB
実行使用メモリ 19,912 KB
最終ジャッジ日時 2024-07-12 21:57:57
合計ジャッジ時間 18,877 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 RE -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
	let mut s = String::new();
	std::io::stdin().read_to_string(&mut s).ok();
	let v: Vec<usize> = s.split_whitespace().flat_map(str::parse).collect();
	let mut a = vec![0; v[1]];
	for t in v[2..].chunks(2) {
		a[v[1] - t[0]] += 1;
		a[v[1] - t[1]] -= 1;
	}
	a.iter().fold(0, |a, x| {
		print!("{} ", a + x);
		a + x
	});
}
0