結果

問題 No.99 ジャンピング駒
ユーザー バカらっくバカらっく
提出日時 2018-03-02 16:15:09
言語 Swift
(5.10.0)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 267 bytes
コンパイル時間 1,272 ms
コンパイル使用メモリ 129,720 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-11-30 12:04:19
合計ジャッジ時間 2,730 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
15,716 KB
testcase_01 AC 86 ms
14,936 KB
testcase_02 AC 84 ms
15,640 KB
testcase_03 AC 84 ms
15,148 KB
testcase_04 AC 84 ms
16,128 KB
testcase_05 AC 85 ms
15,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let komaCount = Int(readLine()!)!

let inpt = readLine()!.split(separator: " ").map{Int($0)!}

var odd = 0
var even = 0
for i in 0..<inpt.count {
    if(inpt[i] % 2 == 0) {
        even += 1
    } else {
        odd += 1
    }
}

let ans = abs(odd - even)

print(ans)
0