結果
問題 | No.99 ジャンピング駒 |
ユーザー | mrc1031 |
提出日時 | 2016-10-12 10:19:25 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 77 ms / 5,000 ms |
コード長 | 522 bytes |
コンパイル時間 | 954 ms |
コンパイル使用メモリ | 106,880 KB |
実行使用メモリ | 34,048 KB |
最終ジャッジ日時 | 2024-11-22 02:36:49 |
合計ジャッジ時間 | 2,074 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 76 ms
33,920 KB |
testcase_01 | AC | 76 ms
34,048 KB |
testcase_02 | AC | 76 ms
33,920 KB |
testcase_03 | AC | 77 ms
33,920 KB |
testcase_04 | AC | 75 ms
34,048 KB |
testcase_05 | AC | 76 ms
33,792 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; class Program { static void Main(string[] args) { // No.99 ジャンピング駒 int N = int.Parse(Console.ReadLine()); long[] X = Console.ReadLine().Split(' ').Select(s => long.Parse(s)).ToArray(); int odd = 0, even = 0; for (int i = 0; i < X.Length; i++) { if (Math.Abs(X[i] % 2) == 1) odd++; else even++; } Console.WriteLine(Math.Abs(odd-even)); } }