結果

問題 No.1664 Unstable f(n)
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-09-03 21:28:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 583 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 53,940 KB
最終ジャッジ日時 2024-12-15 10:04:12
合計ジャッジ時間 2,990 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,740 KB
testcase_01 AC 34 ms
51,776 KB
testcase_02 AC 33 ms
51,956 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 36 ms
52,260 KB
testcase_07 AC 34 ms
51,776 KB
testcase_08 AC 33 ms
51,424 KB
testcase_09 AC 34 ms
51,736 KB
testcase_10 WA -
testcase_11 AC 37 ms
52,092 KB
testcase_12 AC 36 ms
51,356 KB
testcase_13 AC 35 ms
51,888 KB
testcase_14 AC 33 ms
51,688 KB
testcase_15 AC 33 ms
51,592 KB
testcase_16 AC 33 ms
52,044 KB
testcase_17 AC 33 ms
51,748 KB
testcase_18 AC 34 ms
52,092 KB
testcase_19 AC 33 ms
51,800 KB
testcase_20 AC 34 ms
52,064 KB
testcase_21 WA -
testcase_22 AC 34 ms
51,688 KB
testcase_23 AC 34 ms
51,872 KB
testcase_24 AC 38 ms
52,076 KB
testcase_25 AC 34 ms
51,728 KB
testcase_26 AC 36 ms
51,832 KB
testcase_27 AC 35 ms
52,132 KB
testcase_28 AC 35 ms
51,872 KB
testcase_29 AC 34 ms
51,380 KB
testcase_30 AC 34 ms
51,468 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ok=0
ng=10**18
while ng-ok>1:
    mid=(ok+ng)//2
    if mid**2<=n:ok=mid
    else:ng=mid

i=ok
j=2
k=n-i**j
print(i+j+k)
0