結果

問題 No.3044 April Sum of Odd
ユーザー kusagame12kusagame12
提出日時 2023-11-07 18:18:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 996 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 75,800 KB
実行使用メモリ 61,108 KB
最終ジャッジ日時 2024-09-25 23:24:56
合計ジャッジ時間 5,702 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,240 KB
testcase_01 AC 117 ms
41,148 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 518 ms
48,120 KB
testcase_12 AC 107 ms
41,216 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[] as = new int[n];
        for (int i = 0 ; i < n ; i++){
            as[i] = sc.nextInt();
        } 
        
        List<Integer> ansList = new ArrayList<>();
        for (int i = 0 ; i < n ; i++){
            int a = as[i];
            if(a % 2 == 1){
                int cnt = 1;
                int sum = a;
                if(i != n - 1){
                    while(cnt < m && as[i+1] % 2 == 1){
                        sum += as[i+1];
                        cnt++;
                        i++;
                    }
                }
                if(cnt >= m){
                    ansList.add(sum);
                }
            }
        } 
        
         for (int i : ansList){
            System.out.println(i);
         }
        
    }
}
0