結果

問題 No.48 ロボットの操縦
ユーザー go_boardwalkgo_boardwalk
提出日時 2017-04-01 01:47:58
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 347 bytes
コンパイル時間 36 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-07-07 15:05:40
合計ジャッジ時間 1,761 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,024 KB
testcase_01 AC 30 ms
17,152 KB
testcase_02 AC 30 ms
17,152 KB
testcase_03 AC 30 ms
17,152 KB
testcase_04 AC 30 ms
17,024 KB
testcase_05 AC 30 ms
17,024 KB
testcase_06 AC 31 ms
17,024 KB
testcase_07 AC 32 ms
17,152 KB
testcase_08 AC 31 ms
17,152 KB
testcase_09 AC 32 ms
17,024 KB
testcase_10 AC 31 ms
17,024 KB
testcase_11 AC 30 ms
17,152 KB
testcase_12 AC 30 ms
17,024 KB
testcase_13 AC 31 ms
17,152 KB
testcase_14 AC 31 ms
17,280 KB
testcase_15 AC 31 ms
17,152 KB
testcase_16 AC 31 ms
17,024 KB
testcase_17 AC 30 ms
17,152 KB
testcase_18 AC 30 ms
17,024 KB
testcase_19 AC 30 ms
17,152 KB
testcase_20 AC 29 ms
17,024 KB
testcase_21 AC 30 ms
17,024 KB
testcase_22 AC 28 ms
17,024 KB
testcase_23 AC 30 ms
17,024 KB
testcase_24 AC 30 ms
17,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define x (read))
(define y (read))
(define l (read))

(define turn
  (lambda (x y)
    (cond ((and (zero? x) (>= y 0)) 0)
          ((and (>= y 0)) 1)
          (else 2))))
(define mo
  (lambda (x) (if (zero? x)
                  0
                  1)))

(print (+ (turn x y) (div (abs x) l) (div (abs y) l) (mo (modulo x l)) (mo (modulo y l))))
0