結果

問題 No.3044 April Sum of Odd
ユーザー TententenTententen
提出日時 2020-12-14 10:16:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 514 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 78,676 KB
実行使用メモリ 59,236 KB
最終ジャッジ日時 2024-09-20 00:37:19
合計ジャッジ時間 6,621 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,140 KB
testcase_01 AC 106 ms
52,424 KB
testcase_02 AC 120 ms
54,116 KB
testcase_03 AC 216 ms
57,176 KB
testcase_04 AC 224 ms
58,160 KB
testcase_05 AC 227 ms
57,132 KB
testcase_06 AC 240 ms
57,492 KB
testcase_07 AC 197 ms
56,800 KB
testcase_08 AC 206 ms
57,128 KB
testcase_09 AC 247 ms
57,716 KB
testcase_10 AC 514 ms
59,236 KB
testcase_11 AC 482 ms
59,100 KB
testcase_12 AC 122 ms
53,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        int[] arr = new int[n];
        int count = 0;
        long sum = 0;
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            if (arr[i] % 2 == 1) {
                count++;
                sum += arr[i];
            } else {
                if (count >= m) {
                    sb.append(sum).append("\n");
                }
                count = 0;
                sum = 0;
            }
        }
        if (count >= m) {
            sb.append(sum).append("\n");
        }
        System.out.print(sb);
    }
}
0