結果

問題 No.1352 Three Coins
ユーザー tonyu0tonyu0
提出日時 2021-01-17 14:42:04
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 899 bytes
コンパイル時間 12,498 ms
コンパイル使用メモリ 377,876 KB
実行使用メモリ 638,828 KB
最終ジャッジ日時 2024-11-29 20:18:28
合計ジャッジ時間 72,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 10 ms
236,796 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 MLE -
testcase_07 AC 1 ms
10,496 KB
testcase_08 MLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1 ms
10,496 KB
testcase_13 TLE -
testcase_14 MLE -
testcase_15 TLE -
testcase_16 AC 1 ms
10,496 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1 ms
10,496 KB
testcase_20 AC 1 ms
358,700 KB
testcase_21 TLE -
testcase_22 AC 1 ms
399,360 KB
testcase_23 AC 1 ms
10,496 KB
testcase_24 AC 485 ms
469,464 KB
testcase_25 AC 1 ms
10,496 KB
testcase_26 AC 1 ms
232,728 KB
testcase_27 AC 1 ms
10,496 KB
testcase_28 MLE -
testcase_29 AC 514 ms
61,560 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 1 ms
5,248 KB
testcase_34 AC 5 ms
5,248 KB
testcase_35 AC 2 ms
403,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::HashSet;
use std::io::*;
fn gcd(a: u64, b: u64) -> u64 {
    if b == 0 {
        return a;
    }
    gcd(b, a % b)
}

fn rec(x: u64, a: u64, b: u64, c: u64, st: &mut HashSet<u64>) {
    if x >= a * b * c || st.contains(&x) {
        return;
    }
    st.insert(x);
    rec(x + a, a, b, c, st);
    rec(x + b, a, b, c, st);
    rec(x + c, a, b, c, st);
}

fn main() {
    let mut s: String = String::new();
    std::io::stdin().read_to_string(&mut s).ok();
    let mut itr = s.trim().split_whitespace();
    let a: u64 = itr.next().unwrap().parse().unwrap();
    let b: u64 = itr.next().unwrap().parse().unwrap();
    let c: u64 = itr.next().unwrap().parse().unwrap();
    if gcd(a, gcd(b, c)) != 1 {
        println!("INF");
    } else {
        let mut st = HashSet::<u64>::new();
        rec(0, a, b, c, &mut st);
        println!("{}", a * b * c - st.len() as u64);
    }
}
0