結果

問題 No.99 ジャンピング駒
ユーザー horiesinitihoriesiniti
提出日時 2016-06-14 03:17:05
言語 Ruby
(3.3.0)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 137 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-10-09 13:32:08
合計ジャッジ時間 1,607 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
18,816 KB
testcase_01 AC 140 ms
18,560 KB
testcase_02 AC 140 ms
18,560 KB
testcase_03 AC 145 ms
18,560 KB
testcase_04 AC 140 ms
18,688 KB
testcase_05 AC 140 ms
18,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

oddeven=[0,0]

n=STDIN.gets.to_i
xs=STDIN.gets.split(" ")
xs.size.times do |i|
	oddeven[xs[i].to_i%2]+=1
end
puts oddeven.max-oddeven.min
0