結果

問題 No.300 平方数
ユーザー convexineqconvexineq
提出日時 2021-02-23 07:38:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 103 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 59,432 KB
最終ジャッジ日時 2024-09-22 04:20:14
合計ジャッジ時間 3,819 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,336 KB
testcase_01 AC 36 ms
52,752 KB
testcase_02 AC 40 ms
58,468 KB
testcase_03 AC 37 ms
53,476 KB
testcase_04 AC 37 ms
51,880 KB
testcase_05 AC 36 ms
53,436 KB
testcase_06 AC 37 ms
52,400 KB
testcase_07 AC 37 ms
52,220 KB
testcase_08 AC 36 ms
52,952 KB
testcase_09 AC 37 ms
52,508 KB
testcase_10 AC 37 ms
52,660 KB
testcase_11 AC 37 ms
53,008 KB
testcase_12 AC 37 ms
52,952 KB
testcase_13 AC 57 ms
59,100 KB
testcase_14 AC 37 ms
52,396 KB
testcase_15 AC 37 ms
52,948 KB
testcase_16 AC 47 ms
58,180 KB
testcase_17 AC 37 ms
51,760 KB
testcase_18 AC 36 ms
52,084 KB
testcase_19 AC 38 ms
53,768 KB
testcase_20 AC 43 ms
58,872 KB
testcase_21 AC 46 ms
58,604 KB
testcase_22 AC 42 ms
58,608 KB
testcase_23 AC 43 ms
57,916 KB
testcase_24 AC 46 ms
58,040 KB
testcase_25 AC 53 ms
58,208 KB
testcase_26 AC 47 ms
58,752 KB
testcase_27 AC 44 ms
58,132 KB
testcase_28 AC 53 ms
57,980 KB
testcase_29 AC 55 ms
58,308 KB
testcase_30 AC 54 ms
57,516 KB
testcase_31 AC 43 ms
59,020 KB
testcase_32 AC 50 ms
58,812 KB
testcase_33 AC 46 ms
58,528 KB
testcase_34 AC 54 ms
57,920 KB
testcase_35 AC 49 ms
59,088 KB
testcase_36 AC 51 ms
58,168 KB
testcase_37 AC 48 ms
58,384 KB
testcase_38 AC 40 ms
57,572 KB
testcase_39 AC 52 ms
59,052 KB
testcase_40 AC 51 ms
58,064 KB
testcase_41 AC 45 ms
58,596 KB
testcase_42 AC 43 ms
59,432 KB
testcase_43 AC 45 ms
58,428 KB
testcase_44 AC 52 ms
57,996 KB
testcase_45 AC 46 ms
58,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())
for i in range(2,x):
    i *= i
    if x < i: break
    while x%i==0: x //= i
print(x)
0