結果
| 問題 |
No.1063 ルートの計算 / Sqrt Calculation
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-06-11 14:57:44 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 53 ms / 2,000 ms |
| コード長 | 112 bytes |
| コンパイル時間 | 308 ms |
| コンパイル使用メモリ | 81,792 KB |
| 実行使用メモリ | 57,984 KB |
| 最終ジャッジ日時 | 2025-01-03 03:51:43 |
| 合計ジャッジ時間 | 2,144 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 |
ソースコード
N = int(input())
for i in range(10 ** 5, 0, -1):
if N % (i ** 2) == 0:
print(i, N // (i ** 2))
exit(0)