結果

問題 No.2092 Conjugation
ユーザー ⁣
提出日時 2024-07-09 15:11:16
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 28,596 ms
コンパイル使用メモリ 386,540 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-07-09 15:11:47
合計ジャッジ時間 15,970 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 11 ms
7,936 KB
testcase_08 AC 15 ms
9,088 KB
testcase_09 AC 14 ms
8,704 KB
testcase_10 AC 14 ms
8,704 KB
testcase_11 AC 13 ms
8,716 KB
testcase_12 AC 12 ms
8,520 KB
testcase_13 AC 13 ms
8,320 KB
testcase_14 AC 12 ms
8,320 KB
testcase_15 AC 13 ms
8,576 KB
testcase_16 AC 16 ms
9,600 KB
testcase_17 AC 17 ms
9,856 KB
testcase_18 AC 17 ms
9,600 KB
testcase_19 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
	let mut s = String::new();
	std::io::stdin().read_to_string(&mut s).ok();
	let n: Vec<usize> = s.split_whitespace().flat_map(str::parse).collect();
	let mut v = vec![0; n[1]];
	for a in &n[1..] {
		v[a - 1] += 1;
	}
	for i in (0..v.len() - 1).rev() {
		v[i] += v[i + 1];
	}
	println!("{}", v.iter().map(|x| x.to_string()).collect::<Vec<_>>().join(" "))
}
0