結果
問題 | No.2154 あさかつの参加人数 |
ユーザー | |
提出日時 | 2024-07-12 22:06:58 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 364 bytes |
コンパイル時間 | 13,240 ms |
コンパイル使用メモリ | 400,740 KB |
実行使用メモリ | 18,452 KB |
最終ジャッジ日時 | 2024-07-12 22:07:24 |
合計ジャッジ時間 | 25,814 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 656 ms
18,156 KB |
testcase_01 | AC | 685 ms
18,172 KB |
testcase_02 | AC | 667 ms
18,188 KB |
testcase_03 | AC | 654 ms
18,452 KB |
testcase_04 | AC | 664 ms
18,140 KB |
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 | - |
ソースコード
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] + 1]; for t in v[2..].chunks(2) { a[v[1] - t[0]] += 1; a[v[1] - t[1] + 1] -= 1; } a[1..].iter().fold(a[0], |a, x| { println!("{a}"); a + x }); }