結果

問題 No.1664 Unstable f(n)
ユーザー merlinmerlin
提出日時 2021-09-03 21:31:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 679 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 37,376 KB
最終ジャッジ日時 2024-05-09 01:55:06
合計ジャッジ時間 5,722 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,760 KB
testcase_01 AC 48 ms
37,084 KB
testcase_02 AC 49 ms
37,148 KB
testcase_03 AC 49 ms
36,892 KB
testcase_04 AC 50 ms
36,884 KB
testcase_05 AC 50 ms
36,608 KB
testcase_06 AC 49 ms
37,112 KB
testcase_07 AC 51 ms
36,672 KB
testcase_08 AC 49 ms
37,172 KB
testcase_09 AC 49 ms
37,196 KB
testcase_10 WA -
testcase_11 AC 50 ms
36,708 KB
testcase_12 AC 50 ms
36,692 KB
testcase_13 AC 49 ms
36,856 KB
testcase_14 AC 50 ms
37,028 KB
testcase_15 AC 50 ms
36,764 KB
testcase_16 AC 51 ms
36,884 KB
testcase_17 AC 50 ms
37,172 KB
testcase_18 AC 49 ms
36,944 KB
testcase_19 AC 49 ms
36,740 KB
testcase_20 AC 50 ms
37,184 KB
testcase_21 WA -
testcase_22 AC 50 ms
36,708 KB
testcase_23 AC 51 ms
36,992 KB
testcase_24 AC 50 ms
37,088 KB
testcase_25 AC 50 ms
37,028 KB
testcase_26 AC 49 ms
36,792 KB
testcase_27 AC 49 ms
36,652 KB
testcase_28 AC 50 ms
37,172 KB
testcase_29 AC 49 ms
36,900 KB
testcase_30 AC 51 ms
36,968 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 #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        long n=Long.parseLong(bu.readLine());
        long r=root(n),ans=Math.min(n,r+(n-r*r)+2);
        System.out.print(ans);
    }

    static long root(long n)
    {
        long l=1,r=(int)1e9,ans=l,mid;
        while(l<=r)
        {
            mid=(l+r)>>1;
            if(mid*mid<=n)
            {
                ans=mid;
                l=mid+1;
            }
            else r=mid-1;
        }
        return ans;
    }
}

0