結果
問題 | No.1338 Giant Class |
ユーザー | phspls |
提出日時 | 2022-11-19 22:09:03 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 827 bytes |
コンパイル時間 | 13,604 ms |
コンパイル使用メモリ | 379,120 KB |
実行使用メモリ | 814,848 KB |
最終ジャッジ日時 | 2024-09-21 03:16:35 |
合計ジャッジ時間 | 19,590 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 144 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 121 ms
72,320 KB |
testcase_07 | AC | 163 ms
73,120 KB |
testcase_08 | AC | 100 ms
25,044 KB |
testcase_09 | AC | 89 ms
9,344 KB |
testcase_10 | AC | 164 ms
26,332 KB |
testcase_11 | AC | 32 ms
62,804 KB |
testcase_12 | AC | 115 ms
5,376 KB |
testcase_13 | RE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
fn main() { let mut hwq = String::new(); std::io::stdin().read_line(&mut hwq).ok(); let hwq: Vec<usize> = hwq.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let h = hwq[0]; let w = hwq[1]; let q = hwq[2]; let queries = (0..q).map(|_| { let mut temp = String::new(); std::io::stdin().read_line(&mut temp).ok(); let temp: Vec<usize> = temp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); (temp[0]-1, temp[1]-1) }) .collect::<Vec<_>>(); let mut mins = vec![h; w]; let mut summary = h*w; for &(y, x) in queries.iter() { if mins[x] < y { println!("{}", summary); } else { summary -= mins[x] - y; mins[x] = y; println!("{}", summary); } } }