結果
問題 | No.1994 Confusing Name |
ユーザー | phspls |
提出日時 | 2022-09-20 00:41:03 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 440 ms / 2,000 ms |
コード長 | 1,240 bytes |
コンパイル時間 | 12,959 ms |
コンパイル使用メモリ | 388,172 KB |
実行使用メモリ | 33,216 KB |
最終ジャッジ日時 | 2024-06-01 16:37:20 |
合計ジャッジ時間 | 20,056 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 5 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 4 ms
6,944 KB |
testcase_09 | AC | 5 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 263 ms
22,288 KB |
testcase_13 | AC | 392 ms
30,568 KB |
testcase_14 | AC | 388 ms
31,388 KB |
testcase_15 | AC | 327 ms
28,680 KB |
testcase_16 | AC | 270 ms
26,124 KB |
testcase_17 | AC | 319 ms
28,804 KB |
testcase_18 | AC | 411 ms
31,124 KB |
testcase_19 | AC | 440 ms
32,308 KB |
testcase_20 | AC | 417 ms
33,216 KB |
testcase_21 | AC | 60 ms
8,116 KB |
testcase_22 | AC | 27 ms
6,940 KB |
testcase_23 | AC | 354 ms
27,760 KB |
testcase_24 | AC | 345 ms
26,656 KB |
testcase_25 | AC | 194 ms
16,488 KB |
testcase_26 | AC | 85 ms
9,592 KB |
testcase_27 | AC | 330 ms
26,572 KB |
testcase_28 | AC | 223 ms
17,924 KB |
testcase_29 | AC | 21 ms
6,940 KB |
testcase_30 | AC | 234 ms
18,064 KB |
コンパイルメッセージ
warning: unused import: `fmt::format` --> src/main.rs:1:33 | 1 | use std::{collections::HashMap, fmt::format}; | ^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
ソースコード
use std::{collections::HashMap, fmt::format}; fn main() { let mut n = String::new(); std::io::stdin().read_line(&mut n).ok(); let n: usize = n.trim().parse().unwrap(); let words = (0..n).map(|_| { let mut temp = String::new(); std::io::stdin().read_line(&mut temp).ok(); let temp = temp.trim(); temp.to_string() }) .collect::<Vec<String>>(); let one_cnts = words.iter().filter(|&v| v.len() == 1).count(); let mut candmap = HashMap::new(); for i in 0..n { if words[i].len() == 1 { continue; } let limit = words[i].len(); for j in 0..limit { *candmap.entry(j).or_insert(HashMap::new()).entry(format!("{}{}", &words[i][..j], &words[i][j+1..])).or_insert(0usize) += 1; } } for i in 0..n { if words[i].len() == 1 { println!("{}", one_cnts-1); } else { let limit = words[i].len(); let result = (0..limit).map(|j| { candmap.get(&j).unwrap().get(&format!("{}{}", &words[i][..j], &words[i][j+1..])).unwrap() }) .sum::<usize>() - words[i].len(); println!("{}", result); } } }