結果

問題 No.1808 Fullgold Alchemist
ユーザー tentententen
提出日時 2022-08-09 10:07:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 1,579 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 78,016 KB
実行使用メモリ 64,000 KB
最終ジャッジ日時 2024-09-19 17:03:16
合計ジャッジ時間 10,726 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,212 KB
testcase_01 AC 51 ms
50,440 KB
testcase_02 AC 52 ms
50,328 KB
testcase_03 AC 51 ms
50,272 KB
testcase_04 AC 50 ms
50,296 KB
testcase_05 AC 204 ms
58,236 KB
testcase_06 AC 270 ms
59,788 KB
testcase_07 AC 235 ms
59,624 KB
testcase_08 AC 344 ms
63,532 KB
testcase_09 AC 301 ms
64,000 KB
testcase_10 AC 271 ms
63,304 KB
testcase_11 AC 310 ms
63,240 KB
testcase_12 AC 246 ms
60,064 KB
testcase_13 AC 326 ms
61,464 KB
testcase_14 AC 287 ms
59,760 KB
testcase_15 AC 288 ms
59,880 KB
testcase_16 AC 97 ms
52,000 KB
testcase_17 AC 52 ms
50,044 KB
testcase_18 AC 143 ms
54,472 KB
testcase_19 AC 83 ms
51,364 KB
testcase_20 AC 173 ms
55,548 KB
testcase_21 AC 118 ms
52,256 KB
testcase_22 AC 50 ms
50,404 KB
testcase_23 AC 111 ms
51,908 KB
testcase_24 AC 99 ms
52,076 KB
testcase_25 AC 98 ms
52,072 KB
testcase_26 AC 146 ms
54,652 KB
testcase_27 AC 180 ms
55,988 KB
testcase_28 AC 311 ms
61,252 KB
testcase_29 AC 192 ms
55,636 KB
testcase_30 AC 190 ms
55,712 KB
testcase_31 AC 271 ms
59,836 KB
testcase_32 AC 261 ms
57,912 KB
testcase_33 AC 286 ms
57,940 KB
testcase_34 AC 306 ms
61,224 KB
testcase_35 AC 249 ms
57,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int x = sc.nextInt();
        long[] values = new long[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        long left = 0;
        long right = Long.MAX_VALUE / 2;
        while (right - left > 1) {
            long m = (left + right) / 2;
            boolean enable = true;
            long remain = 0;
            for (int i = 0; i < n && enable; i++) {
                remain += values[i];
                enable = (remain / x >= m);
                remain -= x * m;
            }
            if (enable) {
                left = m;
            } else {
                right = m;
            }
        }
        System.out.println(left);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0