結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー etale.K3
提出日時 2020-12-26 00:35:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-22 18:26:45
合計ジャッジ時間 1,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

a,b = 0,0

for i in range(1,int(n**0.5)+1):
	if n%(i*i) == 0:
		a = i
		b = n//(i*i)

print(a, b)
0