結果

問題 No.201 yukicoderじゃんけん
ユーザー らっしー(raccy)らっしー(raccy)
提出日時 2015-05-04 00:00:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 113 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 11,272 KB
実行使用メモリ 15,600 KB
最終ジャッジ日時 2023-09-19 05:43:00
合計ジャッジ時間 2,853 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
15,336 KB
testcase_01 AC 84 ms
15,180 KB
testcase_02 AC 86 ms
15,244 KB
testcase_03 AC 83 ms
15,328 KB
testcase_04 AC 82 ms
15,320 KB
testcase_05 AC 83 ms
15,244 KB
testcase_06 AC 83 ms
15,272 KB
testcase_07 AC 82 ms
15,132 KB
testcase_08 AC 82 ms
15,412 KB
testcase_09 AC 82 ms
15,408 KB
testcase_10 AC 82 ms
15,388 KB
testcase_11 AC 83 ms
15,268 KB
testcase_12 AC 84 ms
15,300 KB
testcase_13 AC 86 ms
15,240 KB
testcase_14 AC 84 ms
15,040 KB
testcase_15 AC 86 ms
15,600 KB
testcase_16 AC 86 ms
15,476 KB
testcase_17 AC 80 ms
15,492 KB
testcase_18 AC 81 ms
15,500 KB
testcase_19 AC 81 ms
15,500 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - c
Main.rb:2: warning: assigned but unused variable - f
Syntax OK

ソースコード

diff #

a,b,c=gets.split
d,e,f=gets.split
puts case b.to_i <=> e.to_i
  when -1
    d
  when 0
    -1
  when 1
    a
end
0