結果

問題 No.2154 あさかつの参加人数
ユーザー ⁣
提出日時 2024-07-12 22:09:36
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 14,420 ms
コンパイル使用メモリ 402,332 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-07-12 22:10:29
合計ジャッジ時間 28,374 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 658 ms
18,176 KB
testcase_01 AC 652 ms
18,048 KB
testcase_02 AC 641 ms
18,048 KB
testcase_03 AC 656 ms
18,048 KB
testcase_04 AC 636 ms
17,920 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 306 ms
15,616 KB
testcase_07 AC 397 ms
9,728 KB
testcase_08 AC 470 ms
8,960 KB
testcase_09 AC 311 ms
5,376 KB
testcase_10 AC 351 ms
8,704 KB
testcase_11 AC 587 ms
15,872 KB
testcase_12 AC 377 ms
13,184 KB
testcase_13 AC 150 ms
9,088 KB
testcase_14 AC 348 ms
14,464 KB
testcase_15 AC 446 ms
8,576 KB
testcase_16 AC 448 ms
13,568 KB
testcase_17 AC 376 ms
15,872 KB
testcase_18 AC 457 ms
16,256 KB
testcase_19 AC 63 ms
5,376 KB
testcase_20 AC 469 ms
12,928 KB
testcase_21 AC 309 ms
5,376 KB
testcase_22 AC 527 ms
5,376 KB
testcase_23 AC 488 ms
15,104 KB
testcase_24 AC 555 ms
16,512 KB
権限があれば一括ダウンロードができます

ソースコード

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[0] + 1];
	for t in v[2..].chunks(2) {
		a[v[0] - t[0]] += 1;
		a[v[0] - t[1] + 1] -= 1;
	}
	a[1..].iter().fold(a[0], |a, x| {
		println!("{a}");
		a + x
	});
}
0