結果

問題 No.113 宝探し
ユーザー Common LispCommon Lisp
提出日時 2024-10-07 23:01:22
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 11 ms / 5,000 ms
コード長 1,091 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 37,296 KB
実行使用メモリ 32,152 KB
最終ジャッジ日時 2024-10-07 23:01:24
合計ジャッジ時間 1,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
26,408 KB
testcase_01 AC 9 ms
26,156 KB
testcase_02 AC 11 ms
26,404 KB
testcase_03 AC 10 ms
30,116 KB
testcase_04 AC 9 ms
26,152 KB
testcase_05 AC 10 ms
32,020 KB
testcase_06 AC 9 ms
26,156 KB
testcase_07 AC 10 ms
28,368 KB
testcase_08 AC 10 ms
30,248 KB
testcase_09 AC 10 ms
26,276 KB
testcase_10 AC 9 ms
26,408 KB
testcase_11 AC 10 ms
30,136 KB
testcase_12 AC 9 ms
26,280 KB
testcase_13 AC 10 ms
26,156 KB
testcase_14 AC 10 ms
26,408 KB
testcase_15 AC 11 ms
32,152 KB
testcase_16 AC 9 ms
26,412 KB
testcase_17 AC 10 ms
30,396 KB
testcase_18 AC 10 ms
30,112 KB
testcase_19 AC 9 ms
26,152 KB
testcase_20 AC 9 ms
28,108 KB
testcase_21 AC 9 ms
26,152 KB
testcase_22 AC 9 ms
26,024 KB
testcase_23 AC 9 ms
26,280 KB
testcase_24 AC 9 ms
26,280 KB
testcase_25 AC 9 ms
26,152 KB
testcase_26 AC 9 ms
26,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 07 OCT 2024 11:01:22 PM):

; wrote /home/judge/data/code/Main.fasl
; compilation finished in 0:00:00.114

ソースコード

diff #

; xy座標の初期値を x = 0, y = 0 として1文字ずつ処理する
; x <- x + 1 ('E')
; x <- x - 1 ('W')
; y <- y + 1 ('N')
; y <- y - 1 ('S')
; 最後に sqrt(x * x + y * y) を出力する
(defun main ()
  (let* ((s (read-line))
         (x 0)
         (y 0))
    (loop for c across s
             ; case はエラーを発生させたくない場合やデフォルトの動作を設定したい場合に使う
             ; ccase は必ずマッチがあるべきだが安全にチェックを行いたい場合に使う
             ; ecase はマッチするキーが必ずあるべき状況で使う
          do (ecase c
               (#\N (incf y))
               (#\E (incf x))
               (#\W (decf x))
               (#\S (decf y))))
           ; sqrt 関数は平方根を求める
           ; 手元の sbcl では
           ; (sqrt 36) => 6.0
           ; (sqrt 123) => 11.090536
           ; (sqrt -2) => #C(0.0 1.4142135)
           ; (sqrt #c(0 3)) #C(1.2247449 1.2247449)
           ; となった
    (princ (sqrt (+ (* x x) (* y y))))
    (terpri)))
(main)
0