結果

問題 No.1664 Unstable f(n)
ユーザー merlinmerlin
提出日時 2021-09-03 21:31:18
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 679 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 37,240 KB
最終ジャッジ日時 2024-12-15 10:13:17
合計ジャッジ時間 5,730 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,632 KB
testcase_01 AC 52 ms
37,112 KB
testcase_02 AC 53 ms
36,652 KB
testcase_03 AC 54 ms
37,060 KB
testcase_04 AC 53 ms
37,060 KB
testcase_05 AC 53 ms
36,960 KB
testcase_06 AC 55 ms
37,116 KB
testcase_07 AC 55 ms
36,916 KB
testcase_08 AC 54 ms
37,004 KB
testcase_09 AC 54 ms
37,240 KB
testcase_10 WA -
testcase_11 AC 54 ms
37,048 KB
testcase_12 AC 53 ms
37,152 KB
testcase_13 AC 53 ms
36,652 KB
testcase_14 AC 55 ms
37,044 KB
testcase_15 AC 52 ms
37,112 KB
testcase_16 AC 54 ms
36,960 KB
testcase_17 AC 54 ms
36,780 KB
testcase_18 AC 53 ms
36,776 KB
testcase_19 AC 55 ms
37,096 KB
testcase_20 AC 55 ms
36,960 KB
testcase_21 WA -
testcase_22 AC 53 ms
36,960 KB
testcase_23 AC 53 ms
37,088 KB
testcase_24 AC 54 ms
36,880 KB
testcase_25 AC 53 ms
37,240 KB
testcase_26 AC 54 ms
37,060 KB
testcase_27 AC 54 ms
36,852 KB
testcase_28 AC 53 ms
37,024 KB
testcase_29 AC 53 ms
36,984 KB
testcase_30 AC 52 ms
36,652 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