結果

問題 No.3044 April Sum of Odd
ユーザー kusagame12kusagame12
提出日時 2023-11-07 18:25:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 596 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 2,562 ms
コンパイル使用メモリ 75,424 KB
実行使用メモリ 48,188 KB
最終ジャッジ日時 2024-09-25 23:25:11
合計ジャッジ時間 6,306 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
39,928 KB
testcase_01 AC 128 ms
41,120 KB
testcase_02 AC 130 ms
41,488 KB
testcase_03 AC 242 ms
45,700 KB
testcase_04 AC 267 ms
46,428 KB
testcase_05 AC 284 ms
46,464 KB
testcase_06 AC 304 ms
47,444 KB
testcase_07 AC 209 ms
43,496 KB
testcase_08 AC 240 ms
45,744 KB
testcase_09 AC 301 ms
46,916 KB
testcase_10 AC 596 ms
48,176 KB
testcase_11 AC 564 ms
48,188 KB
testcase_12 AC 137 ms
41,012 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<Long> ansList = new ArrayList<>();
        for (int i = 0 ; i < n ; i++){
            int a = as[i];
            if(a % 2 == 1){
                int cnt = 1;
                long sum = a;
                while(i < n - 1 && as[i+1] % 2 == 1){
                    sum += as[i+1];
                    cnt++;
                    i++;
                }
                if(cnt >= m){
                    ansList.add(sum);
                }
            }
        } 
        
        for (long i : ansList){
            System.out.println(i);
        }
        
    }
}
0