結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
97,428 KB
testcase_01 AC 541 ms
147,156 KB
testcase_02 AC 394 ms
140,468 KB
testcase_03 AC 101 ms
97,840 KB
testcase_04 AC 102 ms
97,440 KB
testcase_05 AC 104 ms
97,548 KB
testcase_06 AC 104 ms
97,564 KB
testcase_07 AC 104 ms
97,576 KB
testcase_08 AC 104 ms
97,436 KB
testcase_09 AC 103 ms
97,440 KB
testcase_10 AC 103 ms
97,696 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 430 ms
142,416 KB
testcase_22 AC 428 ms
142,604 KB
testcase_23 AC 419 ms
141,180 KB
testcase_24 AC 405 ms
141,616 KB
testcase_25 AC 427 ms
142,216 KB
testcase_26 AC 141 ms
99,952 KB
testcase_27 AC 136 ms
98,848 KB
testcase_28 AC 241 ms
121,736 KB
testcase_29 AC 113 ms
97,880 KB
testcase_30 AC 187 ms
115,912 KB
testcase_31 AC 403 ms
142,052 KB
testcase_32 AC 651 ms
170,992 KB
testcase_33 AC 451 ms
142,772 KB
testcase_34 AC 397 ms
141,492 KB
testcase_35 AC 1,121 ms
232,536 KB
testcase_36 AC 435 ms
142,528 KB
testcase_37 AC 894 ms
209,028 KB
testcase_38 AC 109 ms
95,712 KB
testcase_39 AC 641 ms
170,544 KB
testcase_40 AC 721 ms
180,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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