結果
問題 | No.1730 GCD on Blackboard in yukicoder |
ユーザー | phspls |
提出日時 | 2022-10-16 17:38:26 |
言語 | Rust (1.77.0 + proconio) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,117 bytes |
コンパイル時間 | 13,303 ms |
コンパイル使用メモリ | 386,688 KB |
実行使用メモリ | 1,329,860 KB |
最終ジャッジ日時 | 2024-06-27 12:30:51 |
合計ジャッジ時間 | 20,846 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
use std::collections::HashSet; 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 factors = vec![HashSet::new(); n]; for i in 0..n { for j in 1..=(a[i] as f64).sqrt().floor() as usize { if a[i] % j == 0 { factors[i].insert(j); factors[i].insert(a[i]/j); } } } let mut used_cnt = vec![0usize; LIMIT + 1]; for i in 0..n { for &v in factors[i].iter() { used_cnt[v] += 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); } }