結果
問題 | No.8044 April Sum of Odd |
ユーザー |
![]() |
提出日時 | 2019-04-02 07:57:31 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 61 ms / 2,000 ms |
コード長 | 757 bytes |
コンパイル時間 | 2,199 ms |
コンパイル使用メモリ | 103,808 KB |
実行使用メモリ | 27,008 KB |
最終ジャッジ日時 | 2024-11-28 03:38:29 |
合計ジャッジ時間 | 3,535 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Hello { static void Main() { string[] line = Console.ReadLine().Trim().Split(' '); var n = int.Parse(line[0]); var m = int.Parse(line[1]); line = Console.ReadLine().Trim().Split(' '); var a = Array.ConvertAll(line, int.Parse); getAns(a, n, m); } static void getAns (int[] a, int n , int m) { var sum = 0L; var count = 0; for (int i = 0; i < n; i++) { if (a[i]% 2 == 1) { sum += a[i]; count++; } else { if (count >= m) Console.WriteLine(sum); sum = 0L; count = 0; } } if (count >= m) Console.WriteLine(sum); } }