結果

問題 No.653 E869120 and Lucky Numbers
ユーザー koba-e964
提出日時 2021-11-14 00:53:44
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,726 bytes
コンパイル時間 14,781 ms
コンパイル使用メモリ 383,208 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 18:23:56
合計ジャッジ時間 14,121 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use std::cmp::*;
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes.by_ref().map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr,) => {};
    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, chars) => {
        read_value!($next, String).chars().collect::<Vec<char>>()
    };
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}

trait Change { fn chmax(&mut self, x: Self); fn chmin(&mut self, x: Self); }
impl<T: PartialOrd> Change for T {
    fn chmax(&mut self, x: T) { if *self < x { *self = x; } }
    fn chmin(&mut self, x: T) { if *self > x { *self = x; } }
}

fn main() {
    input!(s: chars);
    let mut c = 0;
    let n = s.len();
    let mut sing = false;
    for i in (0..n).rev() {
        c += (s[i] as u8 - b'0') as i32;
        match c {
            6 | 7 if i + 1 != n => {
                c = 0;
                sing = true;
            }
            2 | 3 | 4 if !sing => c = -1,
            0 if i == 0 => {}
            _ => {
                println!("No");
                return;
            }
        }
    }
    println!("{}", if c == 0 { "Yes" } else { "No" });
}
0