結果
問題 | No.51 やる気の問題 |
ユーザー |
![]() |
提出日時 | 2024-10-29 20:07:11 |
言語 | Common Lisp (sbcl 2.5.0) |
結果 |
AC
|
実行時間 | 13 ms / 5,000 ms |
コード長 | 201 bytes |
コンパイル時間 | 387 ms |
コンパイル使用メモリ | 32,848 KB |
実行使用メモリ | 31,764 KB |
最終ジャッジ日時 | 2024-10-29 20:07:13 |
合計ジャッジ時間 | 1,623 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 29 OCT 2024 08:07:11 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.007
ソースコード
(defun main (&rest argv)(declare (ignorable argv))(let* ((w (read))(d (read)))(dotimes (_ (1- d))(decf w (floor w (* d d)))(decf d))(format t "~d~%" w)))(main)