結果

問題 No.3044 April Sum of Odd
ユーザー joybeeeejoybeeee
提出日時 2020-05-14 15:31:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 551 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 73,720 KB
実行使用メモリ 48,312 KB
最終ジャッジ日時 2024-09-15 07:48:04
合計ジャッジ時間 6,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,284 KB
testcase_01 AC 126 ms
41,032 KB
testcase_02 AC 127 ms
41,472 KB
testcase_03 AC 239 ms
45,560 KB
testcase_04 AC 271 ms
46,420 KB
testcase_05 AC 270 ms
46,860 KB
testcase_06 AC 308 ms
47,532 KB
testcase_07 AC 205 ms
43,856 KB
testcase_08 AC 232 ms
45,872 KB
testcase_09 AC 284 ms
46,924 KB
testcase_10 AC 551 ms
48,312 KB
testcase_11 AC 521 ms
48,196 KB
testcase_12 AC 119 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {

  public static void main(String[] args) { 
      Scanner sc = new Scanner(System.in);
      int n = sc.nextInt();
      int m = sc.nextInt();
      int[] arr = new int[n];
      for(int i = 0; i < n; i++)
        arr[i] = sc.nextInt();
      int leftIdx = 0;
      long sum = 0L;
      for(int i = 0; i < n; i++) {
        if(arr[i] % 2 == 1) {
          sum += arr[i];
        } else {
          if(i - leftIdx >= m)
            System.out.println(sum);
          sum = 0L;
          leftIdx = i + 1;
        }
      }
      if(n - leftIdx >= m)
        System.out.println(sum);
  }
}
0