結果

問題 No.48 ロボットの操縦
ユーザー MiyamonYMiyamonY
提出日時 2019-09-06 14:44:48
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-06-23 22:02:55
合計ジャッジ時間 2,450 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 47 ms
17,792 KB
testcase_02 AC 48 ms
18,048 KB
testcase_03 AC 48 ms
17,792 KB
testcase_04 AC 49 ms
17,792 KB
testcase_05 AC 48 ms
17,920 KB
testcase_06 AC 49 ms
17,792 KB
testcase_07 AC 50 ms
17,792 KB
testcase_08 AC 47 ms
17,920 KB
testcase_09 AC 48 ms
17,792 KB
testcase_10 AC 49 ms
17,792 KB
testcase_11 AC 47 ms
17,920 KB
testcase_12 AC 47 ms
17,920 KB
testcase_13 AC 48 ms
17,792 KB
testcase_14 AC 47 ms
17,792 KB
testcase_15 AC 49 ms
17,792 KB
testcase_16 AC 46 ms
17,792 KB
testcase_17 AC 46 ms
18,048 KB
testcase_18 AC 46 ms
17,920 KB
testcase_19 AC 47 ms
17,920 KB
testcase_20 AC 47 ms
18,048 KB
testcase_21 AC 47 ms
18,048 KB
testcase_22 AC 46 ms
17,792 KB
testcase_23 AC 46 ms
18,048 KB
testcase_24 AC 46 ms
18,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (read-number)
  (string->number (read-line)))

(let* ((x (read-number))
       (y (read-number))
       (l (read-number)))

  (print (+ #?=(div (+ (- l 1) (abs x)) l)
	    #?=(div (+ (- l 1) (abs y)) l)
	    #?=(cond ((and (= x 0) (= y 0)) 0)
		     ((>= y 0) 1)
 		     (else 2)))))
0