結果

問題 No.2016 Countdown Divisors
ユーザー phsplsphspls
提出日時 2022-09-05 00:12:56
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 13,997 ms
コンパイル使用メモリ 384,852 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-19 08:01:11
合計ジャッジ時間 15,947 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 129 ms
6,820 KB
testcase_02 AC 123 ms
6,820 KB
testcase_03 AC 112 ms
6,816 KB
testcase_04 AC 98 ms
6,820 KB
testcase_05 AC 93 ms
6,816 KB
testcase_06 AC 35 ms
6,816 KB
testcase_07 AC 35 ms
6,820 KB
testcase_08 AC 122 ms
6,820 KB
testcase_09 AC 120 ms
6,820 KB
testcase_10 AC 120 ms
6,816 KB
testcase_11 AC 118 ms
6,816 KB
testcase_12 AC 119 ms
6,820 KB
testcase_13 AC 118 ms
6,816 KB
testcase_14 AC 119 ms
6,816 KB
testcase_15 AC 107 ms
6,820 KB
testcase_16 AC 116 ms
6,820 KB
testcase_17 AC 109 ms
6,816 KB
testcase_18 AC 115 ms
6,820 KB
testcase_19 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut t = String::new();
    std::io::stdin().read_line(&mut t).ok();
    let t: usize = t.trim().parse().unwrap();
    let target = vec![1,3,4,5,7,8];
    for _ in 0..t {
        let mut n = String::new();
        std::io::stdin().read_line(&mut n).ok();
        let n: usize = n.trim().parse().unwrap();
        println!("{}", if target.contains(&n) { 1 } else { 2 });
    }
}
0