結果

問題 No.1591 Two Digits
ユーザー kamojiro24e
提出日時 2021-07-09 21:28:24
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 525 bytes
コンパイル時間 13,243 ms
コンパイル使用メモリ 385,232 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-01 15:12:42
合計ジャッジ時間 14,099 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

// -*- coding:utf-8-unix -*-
#![allow(non_snake_case)]

#[cfg(debug_assertions)]
#[allow(unused)]
macro_rules! eprintln {
    ($p:tt, $($x:expr),*) => {
        std::eprintln!($p, $($x,)*);
    };
}

#[cfg(not(debug_assertions))]
#[allow(unused)]
macro_rules! eprintln {
    ($p:tt, $($x:expr),*) => {};
}

use proconio::{fastout, input};
// use proconio::marker::Bytes;

#[fastout]
fn main() {
    input!{
        N : usize,
    }
    if 10 <= N && N <= 99{
        println!("Yes")
    }else{
        println!("No")
    }
}
0