結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー ⁣
提出日時 2024-06-05 12:26:57
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 14,741 ms
コンパイル使用メモリ 377,880 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-05 12:27:21
合計ジャッジ時間 16,395 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
	let mut s = String::new();
	std::io::stdin().read_line(&mut s).ok();
	let n: u32 = s.trim().parse().unwrap();
	for a in (1..(n as f64).floor() as u32).rev() {
		if n % (a * a) == 0 {
			println!("{a} {}", n / a / a);
			break;
		}
	}
}
0