提出 #4478014


ソースコード 拡げる

fn main() {
    let input = {
        use std::io::*;
        let mut input = String::new();
        let _ = stdin().read_to_string(&mut input);
        input.remove(4);
        input.remove(6);
        input.trim().parse::<i32>().unwrap()
    };
    println!("{}", if input <= 20190430 { "Heisei" } else { "TBD" });
}

提出情報

提出日時
問題 A - Still TBD
ユーザ suminos
言語 Rust (1.15.1)
得点 100
コード長 328 Byte
結果 AC
実行時間 2 ms
メモリ 4352 KiB

ジャッジ結果

セット名 Sample All
得点 / 配点 0 / 0 100 / 100
結果
AC × 2
AC × 8
セット名 テストケース
Sample a01, a02
All a01, a02, b03, b04, b05, b06, b07, b08
ケース名 結果 実行時間 メモリ
a01 AC 2 ms 4352 KiB
a02 AC 2 ms 4352 KiB
b03 AC 2 ms 4352 KiB
b04 AC 2 ms 4352 KiB
b05 AC 2 ms 4352 KiB
b06 AC 2 ms 4352 KiB
b07 AC 2 ms 4352 KiB
b08 AC 2 ms 4352 KiB