結果
| 問題 |
No.311 z in FizzBuzzString
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-02 22:38:02 |
| 言語 | Common Lisp (sbcl 2.5.0) |
| 結果 |
AC
|
| 実行時間 | 10 ms / 1,500 ms |
| コード長 | 97 bytes |
| コンパイル時間 | 1,883 ms |
| コンパイル使用メモリ | 32,140 KB |
| 実行使用メモリ | 25,536 KB |
| 最終ジャッジ日時 | 2025-04-02 22:38:05 |
| 合計ジャッジ時間 | 3,037 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 02 APR 2025 10:38:02 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.059
ソースコード
(defparameter N (parse-integer (read-line))) (format t "~d~%" (* (+ (floor N 3) (floor N 5)) 2))