結果
問題 | No.35 タイパー高橋 |
ユーザー | cra77756176 |
提出日時 | 2022-12-06 22:30:56 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 575 bytes |
コンパイル時間 | 13,678 ms |
コンパイル使用メモリ | 379,168 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 10:03:46 |
合計ジャッジ時間 | 13,195 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
ソースコード
fn main() { let mut input = String::new(); std::io::Read::read_to_string(&mut std::io::stdin(), &mut input).ok(); let input: Vec<_> = input .split_whitespace() .map(std::string::ToString::to_string) .collect(); let mut n_chars = 0; let mut n_not_typed = 0; for ts in input[1..].chunks(2) { let t: usize = ts[0].parse().unwrap(); let s_len = ts[1].len(); n_chars += s_len; n_not_typed += s_len.saturating_sub(12 * t / 1000); } println!("{} {}", n_chars - n_not_typed, n_not_typed); }