結果

問題 No.842 初詣
ユーザー phsplsphspls
提出日時 2022-12-01 02:05:57
言語 Rust
(1.77.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 1,372 ms
コンパイル使用メモリ 154,608 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 19:53:57
合計ジャッジ時間 2,526 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut temp = String::new();
    std::io::stdin().read_line(&mut temp).ok();
    let temp: Vec<usize> = temp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let a = temp[0];
    let b = temp[1];
    let c = temp[2];
    let d = temp[3];
    let e = temp[4];
    let f = temp[5];
    let g = temp[6];
    for i1 in 0..=a {
        for i2 in 0..=b {
            for i3 in 0..=c {
                for i4 in 0..=d {
                    for i5 in 0..=e {
                        for i6 in 0..=f {
                            if 500*i1 + 100*i2 + 50*i3 + 10*i4 + 5*i5 + 1*i6 == g {
                                println!("YES");
                                return;
                            }
                        }
                    }
                }
            }
        }
    }
    println!("NO");
}
0