結果

問題 No.99 ジャンピング駒
ユーザー syokeininsyokeinin
提出日時 2014-12-10 17:40:31
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 109 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-06-11 20:32:04
合計ジャッジ時間 1,374 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
19,328 KB
testcase_01 AC 107 ms
19,328 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets.to_i
list = gets.to_s.split(" ").map(&:to_i)
puts 0 if list.size().even?
puts 1 if list.size().odd?
0