結果

問題 No.48 ロボットの操縦
ユーザー MiyamonYMiyamonY
提出日時 2019-09-06 14:32:07
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-06-23 21:46:24
合計ジャッジ時間 2,139 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 32 ms
17,152 KB
testcase_02 AC 32 ms
16,896 KB
testcase_03 AC 32 ms
16,896 KB
testcase_04 AC 32 ms
16,896 KB
testcase_05 WA -
testcase_06 AC 32 ms
17,152 KB
testcase_07 AC 31 ms
17,152 KB
testcase_08 AC 32 ms
16,896 KB
testcase_09 AC 31 ms
16,896 KB
testcase_10 AC 30 ms
16,896 KB
testcase_11 AC 31 ms
17,024 KB
testcase_12 AC 32 ms
17,024 KB
testcase_13 AC 33 ms
16,896 KB
testcase_14 AC 31 ms
16,896 KB
testcase_15 AC 32 ms
16,896 KB
testcase_16 AC 31 ms
17,024 KB
testcase_17 AC 32 ms
16,896 KB
testcase_18 AC 32 ms
16,896 KB
testcase_19 AC 30 ms
16,896 KB
testcase_20 AC 31 ms
17,024 KB
testcase_21 AC 36 ms
16,896 KB
testcase_22 AC 32 ms
16,896 KB
testcase_23 AC 33 ms
17,024 KB
testcase_24 AC 33 ms
16,896 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)
	    (if (< y 0)
		2
		1))))
0