結果

問題 No.52 よくある文字列の問題
ユーザー MiyamonYMiyamonY
提出日時 2019-09-08 00:31:13
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 268 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-06-27 14:25:47
合計ジャッジ時間 1,759 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
15,872 KB
testcase_01 AC 24 ms
16,000 KB
testcase_02 AC 27 ms
17,152 KB
testcase_03 AC 25 ms
16,128 KB
testcase_04 AC 32 ms
17,152 KB
testcase_05 AC 28 ms
17,024 KB
testcase_06 AC 31 ms
17,024 KB
testcase_07 AC 25 ms
16,512 KB
testcase_08 AC 25 ms
16,000 KB
testcase_09 AC 24 ms
16,000 KB
testcase_10 AC 24 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (comb s)
  (cond ((null? s) '(()))
	(else
	 (append (map (lambda (x) (cons (car s) x)) (comb (cdr s)))
		 (map (lambda (x) (cons (last s) x)) (comb (drop-right s 1)))))))

(let* ((s (read-line)))
  (print (length (delete-duplicates (comb (string->list s))))))
0