結果
問題 | No.2778 Is there Same letter? |
ユーザー | Lisp_Coder |
提出日時 | 2024-06-15 13:44:02 |
言語 | Common Lisp (sbcl 2.3.8) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 426 bytes |
コンパイル時間 | 334 ms |
コンパイル使用メモリ | 37,264 KB |
実行使用メモリ | 29,984 KB |
最終ジャッジ日時 | 2024-06-15 13:44:06 |
合計ジャッジ時間 | 1,721 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
25,896 KB |
testcase_01 | AC | 12 ms
28,112 KB |
testcase_02 | AC | 10 ms
25,768 KB |
testcase_03 | AC | 11 ms
26,024 KB |
testcase_04 | AC | 10 ms
25,896 KB |
testcase_05 | AC | 10 ms
25,900 KB |
testcase_06 | AC | 10 ms
25,900 KB |
testcase_07 | AC | 10 ms
25,896 KB |
testcase_08 | AC | 10 ms
25,896 KB |
testcase_09 | AC | 10 ms
27,852 KB |
testcase_10 | AC | 12 ms
27,980 KB |
testcase_11 | AC | 10 ms
25,896 KB |
testcase_12 | AC | 10 ms
25,892 KB |
testcase_13 | AC | 10 ms
25,772 KB |
testcase_14 | AC | 11 ms
29,984 KB |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 15 JUN 2024 01:44:02 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.060
ソースコード
(defun has-duplicate-char (s) (let ((char-set (make-hash-table :test 'equal))) (loop for char across s do (if (gethash char char-set) (return-from has-duplicate-char t) (setf (gethash char char-set) t))) nil)) (defun main () (let ((n (read)) (s (read-line))) (declare (ignore n)) (if (has-duplicate-char s) (format t "Yes~%") (format t "No~%")))) (main)