結果

問題 No.1162 Many Quotients hard
ユーザー tentententen
提出日時 2023-11-16 16:37:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,840 bytes
コンパイル時間 2,714 ms
コンパイル使用メモリ 83,344 KB
実行使用メモリ 50,616 KB
最終ジャッジ日時 2024-09-26 05:09:02
合計ジャッジ時間 6,258 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,208 KB
testcase_01 WA -
testcase_02 AC 48 ms
36,900 KB
testcase_03 WA -
testcase_04 AC 47 ms
37,204 KB
testcase_05 AC 46 ms
36,980 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 47 ms
37,296 KB
testcase_09 WA -
testcase_10 AC 47 ms
37,296 KB
testcase_11 AC 46 ms
37,144 KB
testcase_12 WA -
testcase_13 AC 45 ms
37,096 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 49 ms
37,140 KB
testcase_17 AC 46 ms
36,992 KB
testcase_18 WA -
testcase_19 AC 48 ms
37,028 KB
testcase_20 AC 47 ms
36,900 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 48 ms
37,016 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 49 ms
37,180 KB
testcase_29 AC 49 ms
37,168 KB
testcase_30 WA -
testcase_31 AC 48 ms
37,156 KB
testcase_32 AC 50 ms
36,772 KB
testcase_33 WA -
testcase_34 AC 49 ms
37,160 KB
testcase_35 WA -
testcase_36 AC 50 ms
37,152 KB
testcase_37 AC 51 ms
37,208 KB
testcase_38 WA -
testcase_39 AC 48 ms
36,580 KB
testcase_40 AC 47 ms
36,900 KB
testcase_41 AC 48 ms
36,748 KB
testcase_42 AC 49 ms
37,004 KB
testcase_43 AC 50 ms
37,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        long left = 0;
        long right = Integer.MAX_VALUE / 2;
        while (right - left > 1) {
            long m = (left + right) / 2;
            if (m * m <= n) {
                left = m;
            } else {
                right = m;
            }
        }
        long ans = left * 2;
        if (left * left == n) {
            ans--;
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0