結果

問題 No.1162 Many Quotients hard
ユーザー tentententen
提出日時 2024-07-10 18:21:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,597 bytes
コンパイル時間 2,452 ms
コンパイル使用メモリ 79,420 KB
実行使用メモリ 37,188 KB
最終ジャッジ日時 2024-07-10 18:21:56
合計ジャッジ時間 7,057 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,868 KB
testcase_01 WA -
testcase_02 AC 52 ms
36,624 KB
testcase_03 WA -
testcase_04 AC 55 ms
36,972 KB
testcase_05 AC 53 ms
36,836 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 55 ms
36,712 KB
testcase_09 WA -
testcase_10 AC 54 ms
36,832 KB
testcase_11 AC 53 ms
36,932 KB
testcase_12 WA -
testcase_13 AC 53 ms
36,780 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 53 ms
36,872 KB
testcase_17 AC 53 ms
36,496 KB
testcase_18 WA -
testcase_19 AC 52 ms
36,572 KB
testcase_20 AC 53 ms
36,860 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 57 ms
36,908 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 53 ms
36,800 KB
testcase_29 AC 52 ms
36,756 KB
testcase_30 WA -
testcase_31 AC 53 ms
36,764 KB
testcase_32 AC 53 ms
36,616 KB
testcase_33 WA -
testcase_34 AC 54 ms
36,748 KB
testcase_35 WA -
testcase_36 AC 53 ms
36,832 KB
testcase_37 AC 52 ms
36,952 KB
testcase_38 WA -
testcase_39 AC 54 ms
36,912 KB
testcase_40 AC 54 ms
36,828 KB
testcase_41 AC 78 ms
37,032 KB
testcase_42 AC 54 ms
36,924 KB
testcase_43 AC 53 ms
36,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        long sqrt = getSqrt(n);
        long ans = sqrt * 2;
        if (sqrt * sqrt == n) {
            ans--;
        }
        System.out.println(ans);
    }
    
    static long getSqrt(long x) {
        long left = 0;
        long right = Integer.MAX_VALUE;
        while (right - left > 1) {
            long m = (left + right) / 2;
            if (m * m <= x) {
                left = m;
            } else {
                right = m;
            }
        }
        return left;
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0