結果

問題 No.2707 Bag of Words Encryption
ユーザー Lisp_CoderLisp_Coder
提出日時 2024-04-09 14:58:22
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 853 ms
コンパイル使用メモリ 25,856 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2024-10-01 17:50:36
合計ジャッジ時間 1,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
21,376 KB
testcase_01 AC 7 ms
21,376 KB
testcase_02 AC 26 ms
22,144 KB
testcase_03 AC 11 ms
21,760 KB
testcase_04 AC 27 ms
22,400 KB
testcase_05 AC 16 ms
21,888 KB
testcase_06 AC 25 ms
22,272 KB
testcase_07 AC 33 ms
22,400 KB
testcase_08 AC 31 ms
22,272 KB
testcase_09 AC 33 ms
22,400 KB
testcase_10 AC 30 ms
22,400 KB
testcase_11 AC 30 ms
22,272 KB
testcase_12 AC 33 ms
22,400 KB
testcase_13 AC 32 ms
22,528 KB
testcase_14 AC 32 ms
22,528 KB
testcase_15 AC 32 ms
22,528 KB
testcase_16 AC 32 ms
22,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 01 OCT 2024 05:50:34 PM):

; file: /home/judge/data/code/Main.lisp
; in: LET ((N (READ-LINE)) (S (READ-LINE)))
;     (N (READ-LINE))
; 
; caught STYLE-WARNING:
;   The variable N is defined but never used.
; 
; compilation unit finished
;   caught 1 STYLE-WARNING condition


; wrote /home/judge/data/code/Main.fasl
; compilation finished in 0:00:00.025

ソースコード

diff #

(let ((n (read-line)) (s (read-line))) (loop for c from (char-code #\A) to (char-code #\Z) do (format t "~A" (count (char-upcase (code-char c)) s :test #'char-equal))))(terpri)
0