結果

問題 No.2125 Inverse Sum
ユーザー ixTL255ixTL255
提出日時 2022-12-31 15:36:44
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 744 bytes
コンパイル時間 11,939 ms
コンパイル使用メモリ 374,252 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-11-26 13:05:06
合計ジャッジ時間 71,483 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,616 KB
testcase_01 AC 1 ms
8,740 KB
testcase_02 AC 1 ms
12,068 KB
testcase_03 AC 1 ms
7,168 KB
testcase_04 AC 1 ms
10,496 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1 ms
7,168 KB
testcase_12 AC 1 ms
8,868 KB
testcase_13 AC 1,338 ms
10,496 KB
testcase_14 AC 1,367 ms
7,296 KB
testcase_15 AC 322 ms
10,496 KB
testcase_16 AC 542 ms
7,168 KB
testcase_17 TLE -
testcase_18 AC 1,207 ms
7,040 KB
testcase_19 TLE -
testcase_20 AC 1,058 ms
7,040 KB
testcase_21 AC 1,664 ms
7,424 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1 ms
8,868 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 1 ms
6,816 KB
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

fn divisors(n: i64) -> Vec<i64> {
	let mut d = Vec::new();
	for i in 1..=(f64::sqrt(n as f64) + 1e-18) as i64 {
		if n % i == 0 {
			d.push(i);
			if i != n / i {
				d.push(n / i);
			}
		}
	}
	d.sort();
	d
}

fn main() {
	let mut s = String::new();
	std::io::stdin().read_line(&mut s).ok();
	let mut itr = s.trim().split_whitespace();
	let p: i64 = itr.next().unwrap().parse().unwrap();
	let q: i64 = itr.next().unwrap().parse().unwrap();

	let mut ans = Vec::new();
	for x in divisors(q * q) {
		let y = q * q / x;
		if (x + q) % p ==0 && (y + q) % p == 0 {
			ans.push(((x + q) / p, (y + q) / p));
		}
	}
	ans.sort_unstable();
	println!("{}", ans.len());
	if !ans.is_empty(){
		for i in ans.iter() {
			println!("{} {}", i.0, i.1);
		}
	}
}
0