結果
問題 | No.1063 ルートの計算 / Sqrt Calculation |
ユーザー | masayamatu |
提出日時 | 2020-06-24 22:36:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 141 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 18,208 KB |
最終ジャッジ日時 | 2024-07-03 20:24:14 |
合計ジャッジ時間 | 3,668 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
16,512 KB |
testcase_01 | AC | 32 ms
11,264 KB |
testcase_02 | AC | 32 ms
11,264 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
from decimal import * import math n = int(input()) a = math.floor(n/2) while n%a**2 != 0 or a < 1: a -= 1 b = int(n/a**2) print(a,b)