結果
問題 | No.1994 Confusing Name |
ユーザー | phspls |
提出日時 | 2022-09-20 00:41:03 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 390 ms / 2,000 ms |
コード長 | 1,240 bytes |
コンパイル時間 | 14,406 ms |
コンパイル使用メモリ | 379,300 KB |
実行使用メモリ | 33,224 KB |
最終ジャッジ日時 | 2024-12-22 02:58:54 |
合計ジャッジ時間 | 20,380 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | AC | 5 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 4 ms
5,248 KB |
testcase_09 | AC | 5 ms
5,248 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | AC | 3 ms
5,248 KB |
testcase_12 | AC | 267 ms
22,420 KB |
testcase_13 | AC | 386 ms
30,564 KB |
testcase_14 | AC | 371 ms
31,388 KB |
testcase_15 | AC | 297 ms
28,812 KB |
testcase_16 | AC | 272 ms
26,124 KB |
testcase_17 | AC | 303 ms
28,800 KB |
testcase_18 | AC | 387 ms
31,128 KB |
testcase_19 | AC | 387 ms
32,432 KB |
testcase_20 | AC | 390 ms
33,224 KB |
testcase_21 | AC | 59 ms
7,992 KB |
testcase_22 | AC | 27 ms
5,248 KB |
testcase_23 | AC | 335 ms
27,760 KB |
testcase_24 | AC | 316 ms
26,652 KB |
testcase_25 | AC | 186 ms
16,488 KB |
testcase_26 | AC | 82 ms
9,460 KB |
testcase_27 | AC | 293 ms
26,572 KB |
testcase_28 | AC | 197 ms
17,920 KB |
testcase_29 | AC | 21 ms
5,248 KB |
testcase_30 | AC | 224 ms
18,192 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); } } }