結果

問題 No.313 π
ユーザー Common LispCommon Lisp
提出日時 2024-11-13 01:25:12
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 19 ms / 5,000 ms
コード長 669 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 39,548 KB
実行使用メモリ 34,472 KB
最終ジャッジ日時 2024-11-13 01:25:15
合計ジャッジ時間 2,523 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
32,464 KB
testcase_01 AC 17 ms
28,512 KB
testcase_02 AC 17 ms
28,384 KB
testcase_03 AC 17 ms
28,644 KB
testcase_04 AC 18 ms
28,384 KB
testcase_05 AC 18 ms
34,472 KB
testcase_06 AC 17 ms
28,388 KB
testcase_07 AC 18 ms
30,676 KB
testcase_08 AC 17 ms
28,384 KB
testcase_09 AC 17 ms
28,640 KB
testcase_10 AC 17 ms
28,512 KB
testcase_11 AC 18 ms
32,464 KB
testcase_12 AC 17 ms
28,640 KB
testcase_13 AC 17 ms
28,512 KB
testcase_14 AC 18 ms
30,676 KB
testcase_15 AC 18 ms
30,672 KB
testcase_16 AC 18 ms
32,444 KB
testcase_17 AC 18 ms
28,384 KB
testcase_18 AC 18 ms
30,656 KB
testcase_19 AC 17 ms
28,512 KB
testcase_20 AC 18 ms
30,552 KB
testcase_21 AC 18 ms
32,568 KB
testcase_22 AC 17 ms
28,384 KB
testcase_23 AC 17 ms
28,384 KB
testcase_24 AC 17 ms
30,548 KB
testcase_25 AC 18 ms
32,440 KB
testcase_26 AC 18 ms
32,464 KB
testcase_27 AC 18 ms
28,384 KB
testcase_28 AC 17 ms
30,676 KB
testcase_29 AC 18 ms
30,424 KB
testcase_30 AC 17 ms
28,512 KB
testcase_31 AC 19 ms
32,720 KB
testcase_32 AC 17 ms
28,512 KB
testcase_33 AC 17 ms
28,516 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 13 NOV 2024 01:25:12 AM):

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

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((*read-default-float-format* 'double-float)
         (s (read-line))
         (tbl-0-9 (make-array 10 :initial-contents '(20104 20063 19892 20011 19874 20199 19898 20163 19956 19841)))
         (counter (make-array 10 :element-type 'integer :initial-element 0)))
    (loop for c across s
          when (char/= #\. c)
            do (incf (aref counter (- (char-code c) (char-code #\0)))))
    (dotimes (i 10)
      (when (> (aref counter i) (aref tbl-0-9 i))
            (format t "~d " i)))
    (dotimes (i 10)
      (when (< (aref counter i) (aref tbl-0-9 i))
            (format t "~d~%" i)))))

(main)
0