結果
問題 | No.1063 ルートの計算 / Sqrt Calculation |
ユーザー | k-ish0212 |
提出日時 | 2020-05-29 22:20:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 390 bytes |
コンパイル時間 | 247 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 51,160 KB |
最終ジャッジ日時 | 2024-11-06 05:26:52 |
合計ジャッジ時間 | 10,137 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 496 ms
51,148 KB |
testcase_01 | AC | 531 ms
43,956 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 499 ms
44,324 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 502 ms
44,196 KB |
testcase_08 | AC | 491 ms
44,204 KB |
testcase_09 | TLE | - |
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 import math def is_prime(n): if n == 1: return False for k in range(2, int(math.sqrt(n)) + 1): if n % k == 0: return False return True while b > p: if b % p**2 == 0: b /= p**2 a *= p else: p += 1 if is_prime(b) == False: break # print(n,p) print(int(a),int(b))