結果
問題 | No.72 そろばん Med |
ユーザー |
![]() |
提出日時 | 2024-11-05 16:35:31 |
言語 | Common Lisp (sbcl 2.5.0) |
結果 |
AC
|
実行時間 | 13 ms / 5,000 ms |
コード長 | 321 bytes |
コンパイル時間 | 229 ms |
コンパイル使用メモリ | 37,160 KB |
実行使用メモリ | 30,248 KB |
最終ジャッジ日時 | 2024-11-05 16:35:33 |
合計ジャッジ時間 | 1,892 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 05 NOV 2024 04:35:32 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.007
ソースコード
(defconstant +mod107+ 1000007)(defun main (&rest argv)(declare (ignorable argv))(let* ((n (read))(a (floor n 2))(b (1+ a))(res 0))(setq res (max res (- (+ n (* n a)) (* a a))))(setq res (max res (- (+ n (* n b)) (* b b))))(format t "~d~%" (mod res +mod107+))))(main)