結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー phsplsphspls
提出日時 2022-10-16 18:03:27
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 1,096 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 17,630 ms
コンパイル使用メモリ 387,776 KB
実行使用メモリ 18,940 KB
最終ジャッジ日時 2024-06-27 12:47:58
合計ジャッジ時間 23,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
7,168 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 6 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 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 812 ms
18,824 KB
testcase_14 AC 794 ms
18,740 KB
testcase_15 AC 803 ms
18,940 KB
testcase_16 AC 806 ms
18,928 KB
testcase_17 AC 813 ms
18,848 KB
testcase_18 AC 531 ms
12,696 KB
testcase_19 AC 1,096 ms
16,132 KB
testcase_20 AC 255 ms
6,656 KB
testcase_21 AC 261 ms
6,656 KB
testcase_22 AC 269 ms
7,168 KB
testcase_23 AC 253 ms
5,888 KB
testcase_24 AC 250 ms
6,016 KB
testcase_25 AC 799 ms
13,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::HashMap;

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 mapping = HashMap::new();
    for &v in a.iter() { *mapping.entry(v).or_insert(0usize) += 1; }
    let mut used_cnt = vec![0usize; LIMIT + 1];
    for (&v, &cnt) in mapping.iter() {
        for j in 1..=(v as f64).sqrt().floor() as usize {
            if v % j == 0 {
                let l = j;
                let r = v/j;
                used_cnt[l] += cnt;
                if l != r {
                    used_cnt[r] += cnt;
                }
            }
        }
    }
    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