結果
問題 | No.571 3人兄弟(その2) |
ユーザー | Common Lisp |
提出日時 | 2024-11-06 18:46:07 |
言語 | Common Lisp (sbcl 2.3.8) |
結果 |
WA
|
実行時間 | - |
コード長 | 740 bytes |
コンパイル時間 | 329 ms |
コンパイル使用メモリ | 37,252 KB |
実行使用メモリ | 32,404 KB |
最終ジャッジ日時 | 2024-11-06 18:46:11 |
合計ジャッジ時間 | 1,119 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
22,144 KB |
testcase_01 | WA | - |
testcase_02 | AC | 9 ms
22,144 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 10 ms
22,016 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 10 ms
22,144 KB |
testcase_11 | AC | 10 ms
22,144 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 06 NOV 2024 06:46:10 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.007
ソースコード
(defun custom-sort (lst) (sort lst (lambda (a b) (let ((first-a (first a)) (first-b (first b)) (second-a (second a)) (second-b (second b))) (or (> first-a first-b) (and (= first-a first-b) (> second-a second-b))))))) (defun main (&rest argv) (declare (ignorable argv)) (let* ((ha (read)) (wa (read)) (hb (read)) (wb (read)) (hc (read)) (wc (read)) (h1 (list ha wa 'A)) (h2 (list hb wb 'B)) (h3 (list hc wc 'C)) (h (custom-sort (list h1 h2 h3)))) (dotimes (i 3) (format t "~a~%" (nth 2 (nth i h)))))) (main)