結果
| 問題 | No.373 かけ算と割った余り |
| コンテスト | |
| ユーザー |
Common Lisp
|
| 提出日時 | 2024-10-30 23:21:59 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
AC
|
| 実行時間 | 8 ms / 2,000 ms |
| コード長 | 181 bytes |
| 記録 | |
| コンパイル時間 | 338 ms |
| コンパイル使用メモリ | 28,800 KB |
| 実行使用メモリ | 22,528 KB |
| 最終ジャッジ日時 | 2026-05-06 00:25:53 |
| 合計ジャッジ時間 | 1,069 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 5 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 06 MAY 2026 12:25:52 AM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.002
ソースコード
(defun main (&rest argv)
(declare (ignore argv))
(let* ((a (read))
(b (read))
(c (read))
(d (read)))
(format t "~d~%" (mod (* a b c) d))))
(main)
Common Lisp