結果
| 問題 | No.2714 Amaou |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-09 15:43:33 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
AC
|
| 実行時間 | 6 ms / 2,000 ms |
| コード長 | 351 bytes |
| 記録 | |
| コンパイル時間 | 814 ms |
| コンパイル使用メモリ | 29,696 KB |
| 実行使用メモリ | 22,400 KB |
| 最終ジャッジ日時 | 2026-04-17 20:49:35 |
| 合計ジャッジ時間 | 1,649 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 26 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 17 APR 2026 08:49:31 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.029
ソースコード
(loop with cnt = 0 for i from 1 to (parse-integer (read-line)) do (let ((words (mapcar #'string-downcase (list (read) (read) (read) (read))))) (when (and (position "akai" words :test #'equal) (position "marui" words :test #'equal) (position "okii" words :test #'equal) (position "umai" words :test #'equal)) (incf cnt))) finally (format t "~a~%" cnt))