結果

問題 No.677 10^Nの約数
ユーザー ⁣
提出日時 2024-05-28 10:36:07
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 11,786 ms
コンパイル使用メモリ 403,628 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-05-28 10:36:27
合計ジャッジ時間 20,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 10 ms
6,944 KB
testcase_13 AC 28 ms
6,940 KB
testcase_14 AC 86 ms
6,944 KB
testcase_15 AC 270 ms
6,940 KB
testcase_16 AC 849 ms
6,944 KB
testcase_17 TLE -
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::HashSet;

fn main() {
	let mut s = String::new();
	std::io::stdin().read_line(&mut s).ok();
	let n = 10u64.pow(s.trim().parse().unwrap());
	let mut h = HashSet::new();
	for a in 1..n {
		if n / a < a {
			break;
		}
		if n % a == 0 {
			h.insert(a);
			h.insert(n / a);
		}
	}
	let mut a: Vec<_> = h.iter().collect();
	a.sort();
	a.iter().for_each(|&x| println!("{}", x));
}
0