結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー pypypymipypypymi
提出日時 2022-02-01 10:35:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 196 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 68,924 KB
最終ジャッジ日時 2024-06-11 09:08:19
合計ジャッジ時間 4,257 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,472 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 43 ms
58,112 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 45 ms
58,368 KB
testcase_06 AC 104 ms
59,648 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
root_n = int(n**0.5)+1
for b in range(1,n+1):
    for a in range(1,root_n+1):
        if n==(a**2)*b:
            print(a,b)
            break
    else:
        continue
    break
0