結果

問題 No.2707 Bag of Words Encryption
ユーザー marble72marble72
提出日時 2024-03-31 14:02:24
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 13,478 ms
コンパイル使用メモリ 379,164 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-30 18:50:16
合計ジャッジ時間 20,505 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 310 ms
5,248 KB
testcase_03 AC 15 ms
5,248 KB
testcase_04 AC 322 ms
5,248 KB
testcase_05 AC 74 ms
5,248 KB
testcase_06 AC 241 ms
5,248 KB
testcase_07 AC 499 ms
5,248 KB
testcase_08 AC 438 ms
5,248 KB
testcase_09 AC 508 ms
5,248 KB
testcase_10 AC 445 ms
5,248 KB
testcase_11 AC 439 ms
5,248 KB
testcase_12 AC 525 ms
5,248 KB
testcase_13 AC 530 ms
5,248 KB
testcase_14 AC 527 ms
5,248 KB
testcase_15 AC 525 ms
5,248 KB
testcase_16 AC 529 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: variable does not need to be mutable
 --> src/main.rs:6:9
  |
6 |     let mut n:i32 = inpt_vec[0].parse().unwrap();
  |         ----^
  |         |
  |         help: remove this `mut`
  |
  = note: `#[warn(unused_mut)]` on by default

ソースコード

diff #

use std::vec;

fn main() {
    let inpt = getline();
    let inpt_vec:Vec<_>=inpt.trim().split(' ').collect();
    let mut n:i32 = inpt_vec[0].parse().unwrap();
    let s = getline();

    let mut ans = vec![0;26];
    for i in 0..(n as usize) {
        let num = s.chars().nth(i).unwrap() as i32 - 'A' as i32;
        ans[num as usize]+=1;
    }
    for i in ans {
        print!("{}",i);
    }
    println!();
}

fn getline() -> String {
    let mut _ret = String::new();
    std::io::stdin().read_line(&mut _ret).ok();
    return _ret;
}
0