結果

問題 No.1664 Unstable f(n)
ユーザー DrDrpilotDrDrpilot
提出日時 2022-03-16 11:17:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 193 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 234,880 KB
最終ジャッジ日時 2024-09-24 06:40:34
合計ジャッジ時間 22,828 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
97,616 KB
testcase_01 AC 543 ms
146,896 KB
testcase_02 AC 395 ms
141,392 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 101 ms
97,608 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 438 ms
142,480 KB
testcase_22 AC 433 ms
142,132 KB
testcase_23 AC 423 ms
142,212 KB
testcase_24 AC 411 ms
140,892 KB
testcase_25 AC 431 ms
142,320 KB
testcase_26 AC 142 ms
99,320 KB
testcase_27 AC 136 ms
98,932 KB
testcase_28 AC 243 ms
119,540 KB
testcase_29 AC 111 ms
98,156 KB
testcase_30 AC 189 ms
115,472 KB
testcase_31 AC 404 ms
141,028 KB
testcase_32 AC 654 ms
171,272 KB
testcase_33 AC 453 ms
142,532 KB
testcase_34 AC 398 ms
140,744 KB
testcase_35 AC 1,121 ms
231,072 KB
testcase_36 AC 437 ms
142,512 KB
testcase_37 AC 897 ms
208,556 KB
testcase_38 AC 107 ms
95,856 KB
testcase_39 AC 642 ms
172,020 KB
testcase_40 AC 732 ms
180,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=[]
for i in range(200000):
    for j in range(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