結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー phsplsphspls
提出日時 2022-10-16 17:47:13
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 1,233 ms / 2,000 ms
コード長 1,030 bytes
コンパイル時間 14,876 ms
コンパイル使用メモリ 379,420 KB
実行使用メモリ 14,704 KB
最終ジャッジ日時 2024-06-27 12:36:47
合計ジャッジ時間 25,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,233 ms
7,296 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 806 ms
14,644 KB
testcase_14 AC 804 ms
14,592 KB
testcase_15 AC 798 ms
14,644 KB
testcase_16 AC 825 ms
14,704 KB
testcase_17 AC 817 ms
14,692 KB
testcase_18 AC 508 ms
8,320 KB
testcase_19 AC 1,007 ms
11,648 KB
testcase_20 AC 356 ms
6,656 KB
testcase_21 AC 353 ms
6,656 KB
testcase_22 AC 1,053 ms
7,040 KB
testcase_23 AC 255 ms
5,888 KB
testcase_24 AC 249 ms
6,016 KB
testcase_25 AC 732 ms
9,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const LIMIT: usize = 1e6 as usize;

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();
    let mut a = String::new();
    std::io::stdin().read_line(&mut a).ok();
    let a: Vec<usize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    let mut used_cnt = vec![0usize; LIMIT + 1];
    for i in 0..n {
        for j in 1..=(a[i] as f64).sqrt().floor() as usize {
            if a[i] % j == 0 {
                let l = j;
                let r = a[i]/j;
                used_cnt[l] += 1;
                if l != r {
                    used_cnt[r] += 1;
                }
            }
        }
    }
    let mut result = vec![0usize; n];
    for i in (1..=LIMIT).rev() {
        if used_cnt[i] == 0 { continue; }
        let mut idx = n-used_cnt[i];
        while idx < n && result[idx] == 0 {
            result[idx] = i;
            idx += 1;
        }
    }
    for &v in result.iter() {
        println!("{}", v);
    }
}
0