結果

問題 No.1808 Fullgold Alchemist
ユーザー tentententen
提出日時 2022-09-28 09:44:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 1,185 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 77,920 KB
実行使用メモリ 52,604 KB
最終ジャッジ日時 2024-06-02 01:24:41
合計ジャッジ時間 9,414 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,120 KB
testcase_01 AC 49 ms
37,280 KB
testcase_02 AC 49 ms
37,088 KB
testcase_03 AC 48 ms
37,012 KB
testcase_04 AC 48 ms
37,272 KB
testcase_05 AC 196 ms
45,364 KB
testcase_06 AC 242 ms
46,456 KB
testcase_07 AC 237 ms
46,536 KB
testcase_08 AC 267 ms
52,192 KB
testcase_09 AC 263 ms
52,604 KB
testcase_10 AC 272 ms
52,444 KB
testcase_11 AC 259 ms
49,960 KB
testcase_12 AC 244 ms
46,496 KB
testcase_13 AC 246 ms
46,316 KB
testcase_14 AC 248 ms
46,444 KB
testcase_15 AC 251 ms
46,380 KB
testcase_16 AC 96 ms
39,376 KB
testcase_17 AC 50 ms
36,820 KB
testcase_18 AC 140 ms
41,380 KB
testcase_19 AC 72 ms
38,712 KB
testcase_20 AC 149 ms
42,720 KB
testcase_21 AC 112 ms
40,232 KB
testcase_22 AC 49 ms
37,336 KB
testcase_23 AC 102 ms
39,720 KB
testcase_24 AC 90 ms
39,156 KB
testcase_25 AC 92 ms
39,284 KB
testcase_26 AC 143 ms
41,892 KB
testcase_27 AC 165 ms
43,384 KB
testcase_28 AC 253 ms
47,616 KB
testcase_29 AC 183 ms
43,548 KB
testcase_30 AC 175 ms
43,616 KB
testcase_31 AC 242 ms
46,744 KB
testcase_32 AC 203 ms
45,520 KB
testcase_33 AC 229 ms
46,600 KB
testcase_34 AC 258 ms
48,064 KB
testcase_35 AC 227 ms
46,176 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 m = sc.nextInt();
        long ans = Long.MAX_VALUE;
        long sum = 0;
        for (int i = 1; i <= n; i++) {
            sum += sc.nextInt();
            ans = Math.min(ans, sum / i / m);
        }
        System.out.println(ans);
    }
}
    
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0