結果
問題 | No.805 UMG |
ユーザー | frozenlib |
提出日時 | 2019-04-08 00:29:36 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,882 bytes |
コンパイル時間 | 14,498 ms |
コンパイル使用メモリ | 380,156 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-04-29 10:52:09 |
合計ジャッジ時間 | 14,683 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | RE | - |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
ソースコード
use std::io::*; use std::str::FromStr; use utils::*; pub fn main() { let i = stdin(); let mut o = Vec::new(); run(i.lock(), &mut o); stdout().write_all(&o).unwrap(); } fn run<R: BufRead, W: Write>(i: R, o: &mut W) { let mut i = CpReader::new(i); let _n = i.read::<usize>(); let s = i.read_line().as_bytes(); writeln!(o, "{}", solve(s)).unwrap(); } fn solve(s: &[u8]) -> usize { let mut count = 0; for i in 0..s.len() - 2 { if s[i] != b'U' { continue; } for l in 0..(s.len() - i) / 2 { let l = l + 1; if s[i + l] == b'M' && s[i + l * 2] == b'G' { count += 1; } } } count } mod utils { use super::*; pub struct CpReader<R: BufRead> { r: R, s: String, } macro_rules! fn_read { { $f:ident($($t:ident),*) } => { #[allow(dead_code)] pub fn $f<$($t: FromStr),*>(&mut self) -> ($($t),*) { let i = &mut self.read_line().split(' '); ($(read_next::<$t,_>(i)),*) } }; } impl<R: BufRead> CpReader<R> { pub fn new(r: R) -> Self { CpReader { r: r, s: String::new(), } } pub fn read_line(&mut self) -> &str { self.s.clear(); self.r.read_line(&mut self.s).unwrap(); self.s.trim() } pub fn read<T: FromStr>(&mut self) -> T { self.read_line().parse().ok().unwrap() } fn_read! { read2(T1, T2) } fn_read! { read3(T1, T2, T3) } fn_read! { read4(T1, T2, T3, T4) } fn_read! { read5(T1, T2, T3, T4, T5) } } fn read_next<'a, T: FromStr, I: Iterator<Item = &'a str>>(i: &mut I) -> T { i.next().unwrap().parse().ok().unwrap() } }