結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー sasa8uyauyasasa8uyauya
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,488 KB
testcase_01 AC 41 ms
60,916 KB
testcase_02 AC 38 ms
59,700 KB
testcase_03 AC 37 ms
58,912 KB
testcase_04 AC 39 ms
60,460 KB
testcase_05 AC 36 ms
59,772 KB
testcase_06 AC 38 ms
60,548 KB
testcase_07 AC 37 ms
59,352 KB
testcase_08 AC 38 ms
61,276 KB
testcase_09 AC 38 ms
59,448 KB
testcase_10 AC 40 ms
59,184 KB
testcase_11 AC 37 ms
60,408 KB
testcase_12 AC 40 ms
60,180 KB
testcase_13 AC 38 ms
59,584 KB
testcase_14 AC 38 ms
59,652 KB
testcase_15 AC 37 ms
59,168 KB
testcase_16 AC 38 ms
59,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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