結果
問題 | No.1063 ルートの計算 / Sqrt Calculation |
ユーザー | naru_1017 |
提出日時 | 2020-05-29 21:34:36 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 404 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-11-06 02:41:46 |
合計ジャッジ時間 | 1,430 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | AC | 29 ms
10,752 KB |
testcase_03 | AC | 33 ms
10,752 KB |
testcase_04 | AC | 29 ms
10,624 KB |
testcase_05 | AC | 35 ms
10,880 KB |
testcase_06 | AC | 29 ms
10,752 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 34 ms
10,880 KB |
testcase_11 | AC | 35 ms
10,752 KB |
testcase_12 | AC | 34 ms
10,880 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
import sys input=sys.stdin.readline sys.setrecursionlimit(10**6) n=int(input().rstrip()) num=[] a,b=1,1 tmp=n for i in range(2,int(n**0.5)+1): if tmp%i==0: cnt=0 while tmp%i==0: cnt+=1 tmp//=i num.append((i,cnt)) #print(num) for i in num: if i[1]%2==1: a*=i[0]**(i[1]-1) b*=i[0] else: a*=i[0]**i[1] print(int(a**0.5),b)