結果
| 問題 |
No.1643 Not Substring
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-08-17 16:46:48 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 712 bytes |
| コンパイル時間 | 12,136 ms |
| コンパイル使用メモリ | 405,416 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-10 15:13:19 |
| 合計ジャッジ時間 | 13,784 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 26 |
ソースコード
use std::io::Read;
fn get_word() -> String {
let stdin = std::io::stdin();
let mut stdin=stdin.lock();
let mut u8b: [u8; 1] = [0];
loop {
let mut buf: Vec<u8> = Vec::with_capacity(16);
loop {
let res = stdin.read(&mut u8b);
if res.unwrap_or(0) == 0 || u8b[0] <= b' ' {
break;
} else {
buf.push(u8b[0]);
}
}
if buf.len() >= 1 {
let ret = String::from_utf8(buf).unwrap();
return ret;
}
}
}
fn main() {
let s = get_word();
let c = s.chars().filter(|&x| x == 'a').count();
for _ in 0..c + 1 {
print!("a");
}
println!();
}