結果

問題 No.2757 Pin Game
ユーザー tentententen
提出日時 2024-05-22 10:46:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 1,403 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 78,884 KB
実行使用メモリ 63,392 KB
最終ジャッジ日時 2024-05-22 10:46:48
合計ジャッジ時間 4,593 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,340 KB
testcase_01 AC 48 ms
50,440 KB
testcase_02 AC 48 ms
50,412 KB
testcase_03 AC 49 ms
50,412 KB
testcase_04 AC 279 ms
63,200 KB
testcase_05 AC 286 ms
63,392 KB
testcase_06 AC 48 ms
50,172 KB
testcase_07 AC 48 ms
50,056 KB
testcase_08 AC 49 ms
50,336 KB
testcase_09 AC 49 ms
50,260 KB
testcase_10 AC 210 ms
55,452 KB
testcase_11 AC 232 ms
55,952 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();
        int n = sc.nextInt();
        int k = sc.nextInt();
        long current = Long.MIN_VALUE / 2;
        int ans = 0;
        while (n-- > 0) {
            int x = sc.nextInt();
            if (x - current >= k) {
                ans++;
                current = x;
            }
        }
        System.out.println(ans);
    }
}
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