結果
| 問題 | No.300 平方数 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-12-03 15:03:08 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 201 ms / 1,000 ms |
| コード長 | 156 bytes |
| コンパイル時間 | 84 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-07-01 05:37:23 |
| 合計ジャッジ時間 | 6,447 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 43 |
ソースコード
x = int(input())
ans = 10 ** 13
for i in range(1, int((x)**0.5) + 1):
if x % i == 0 and x // i % i == 0:
ans = min(ans, x // i // i)
print(ans)