結果

問題 No.99 ジャンピング駒
ユーザー maimai
提出日時 2016-01-23 11:23:58
言語 Ruby
(3.3.0)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 136 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-09-21 15:03:22
合計ジャッジ時間 1,690 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
19,968 KB
testcase_01 AC 127 ms
20,096 KB
testcase_02 AC 130 ms
20,096 KB
testcase_03 AC 129 ms
20,096 KB
testcase_04 AC 132 ms
19,968 KB
testcase_05 AC 134 ms
20,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n=gets.to_i
d=gets.split(" ").map(&:to_i)
od=d.clone.select{|x|x.odd?}
ed=d.clone.select{|x|x.even?}
l=od.size-ed.size
p l >= 0 ? l : -l
0