結果
問題 | No.1063 ルートの計算 / Sqrt Calculation |
ユーザー | k-ish0212 |
提出日時 | 2020-05-29 22:04:59 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 183 bytes |
コンパイル時間 | 324 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 50,980 KB |
最終ジャッジ日時 | 2024-11-06 04:51:54 |
合計ジャッジ時間 | 8,084 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 510 ms
50,980 KB |
testcase_01 | AC | 515 ms
44,296 KB |
testcase_02 | AC | 511 ms
44,172 KB |
testcase_03 | AC | 510 ms
44,448 KB |
testcase_04 | AC | 513 ms
43,920 KB |
testcase_05 | AC | 518 ms
43,928 KB |
testcase_06 | AC | 511 ms
44,424 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
n = int(input()) import numpy as np p = 2 a = 1 b = n while b > p: if b % p**2 == 0: b /= p**2 a *= p else: p += 1 # print(n,p) print(int(a),int(b))