結果
問題 | No.3044 April Sum of Odd |
ユーザー | ウップス600 |
提出日時 | 2022-01-12 21:20:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 835 bytes |
コンパイル時間 | 2,196 ms |
コンパイル使用メモリ | 77,276 KB |
実行使用メモリ | 60,176 KB |
最終ジャッジ日時 | 2024-11-15 13:22:35 |
合計ジャッジ時間 | 6,893 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
41,532 KB |
testcase_01 | AC | 126 ms
41,304 KB |
testcase_02 | AC | 128 ms
41,664 KB |
testcase_03 | AC | 235 ms
46,100 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 548 ms
49,856 KB |
testcase_11 | AC | 462 ms
47,144 KB |
testcase_12 | AC | 109 ms
39,896 KB |
ソースコード
import java. util. Scanner; public class Main{ public static void main (String[] args){ Scanner scanner = new Scanner (System. in); int[] number = new int[2]; for (int j = 0; j < number. length; j ++){ number[j] = scanner. nextInt(); } long[] point = new long[number[0]]; for (int j = 0; j < number[0]; j ++){ point[j] = scanner. nextLong(); } int answer = 0; long x = 0; for (int j = 0; j <= number[0] - number[1]; j ++){ for (int k = 0; k < number[1]; k ++){ if (point[j + k] % 2 == 0){ answer = 1; } } if (answer == 1){ if (x != 0){ System. out. println (x); } answer = 0; x = 0; continue; } for (int k = 0; k < number[1]; k ++){ x += point[j + k]; } } if (x != 0){ System. out. println (x); } scanner. close(); } }