結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー sasa8uyauya
提出日時 2024-09-19 23:10:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 93 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 61,276 KB
最終ジャッジ日時 2024-09-19 23:10:45
合計ジャッジ時間 1,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for i in reversed(range(100000)):
	if n%(i*i)==0:
		print(i,n//(i*i))
		exit()
0