結果
問題 | No.21 平均の差 |
ユーザー | mesh1nek0x0 |
提出日時 | 2018-07-01 15:58:24 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 559 bytes |
コンパイル時間 | 70 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-07-01 01:12:20 |
合計ジャッジ時間 | 1,509 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
#!/bin/ruby X = gets.chomp.to_f Y = gets.chomp.to_f L = gets.chomp.to_f rotation = 0 ## それぞれ転回が必要が確認が必要 if X != 0 rotation += 1 end ## 最初に北を向いているので南に向かうときだけ if Y < 0 if X === 0 ## 方向を変えていない場合、正反対を向く必要があります rotation += 2 else ## 左右どちらかに方向を変えていればあと1回転回する rotation += 1 end end moveX = (X.abs / L).ceil moveY = (Y.abs / L).ceil puts moveX.abs + moveY.abs + rotation