結果

問題 No.1664 Unstable f(n)
ユーザー DrDrpilotDrDrpilot
提出日時 2022-03-16 11:15:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 197 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 197,444 KB
最終ジャッジ日時 2024-09-24 06:37:01
合計ジャッジ時間 15,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,228 KB
testcase_01 AC 288 ms
120,548 KB
testcase_02 AC 106 ms
98,216 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 40 ms
58,752 KB
testcase_07 AC 39 ms
59,316 KB
testcase_08 AC 40 ms
59,464 KB
testcase_09 AC 39 ms
59,924 KB
testcase_10 AC 40 ms
58,972 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 146 ms
99,020 KB
testcase_22 AC 169 ms
115,052 KB
testcase_23 AC 163 ms
114,984 KB
testcase_24 AC 118 ms
97,864 KB
testcase_25 AC 146 ms
99,304 KB
testcase_26 AC 53 ms
72,032 KB
testcase_27 AC 53 ms
70,800 KB
testcase_28 AC 87 ms
94,948 KB
testcase_29 AC 48 ms
68,212 KB
testcase_30 AC 56 ms
75,716 KB
testcase_31 AC 112 ms
98,500 KB
testcase_32 AC 450 ms
142,028 KB
testcase_33 AC 198 ms
115,796 KB
testcase_34 AC 110 ms
98,268 KB
testcase_35 AC 880 ms
194,120 KB
testcase_36 AC 182 ms
115,208 KB
testcase_37 AC 623 ms
156,496 KB
testcase_38 AC 48 ms
66,800 KB
testcase_39 AC 444 ms
141,788 KB
testcase_40 AC 494 ms
135,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=[]
for i in range(1,200000):
    for j in range(1,50):
        if pow(i,j)>n:
            break
        k=n-pow(i,j)
        ans.append((i+j+k,i,j,k))
ans.sort()
print(ans[0][0])
0