結果
問題 | No.548 国士無双 |
ユーザー | ducktail |
提出日時 | 2017-12-25 23:51:19 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 575 bytes |
コンパイル時間 | 108 ms |
コンパイル使用メモリ | 6,944 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-09-17 13:49:04 |
合計ジャッジ時間 | 1,625 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,536 KB |
testcase_01 | AC | 29 ms
17,536 KB |
testcase_02 | AC | 30 ms
17,536 KB |
testcase_03 | AC | 28 ms
17,664 KB |
testcase_04 | AC | 28 ms
17,536 KB |
testcase_05 | AC | 28 ms
17,792 KB |
testcase_06 | AC | 29 ms
17,664 KB |
testcase_07 | AC | 28 ms
17,536 KB |
testcase_08 | AC | 29 ms
17,536 KB |
testcase_09 | AC | 30 ms
17,536 KB |
testcase_10 | AC | 27 ms
17,664 KB |
testcase_11 | AC | 30 ms
17,536 KB |
testcase_12 | AC | 27 ms
17,536 KB |
testcase_13 | AC | 28 ms
17,536 KB |
testcase_14 | AC | 29 ms
17,408 KB |
testcase_15 | AC | 29 ms
17,664 KB |
testcase_16 | AC | 29 ms
17,664 KB |
testcase_17 | AC | 28 ms
17,664 KB |
testcase_18 | AC | 28 ms
17,536 KB |
testcase_19 | AC | 29 ms
17,792 KB |
testcase_20 | AC | 31 ms
17,536 KB |
testcase_21 | AC | 31 ms
17,536 KB |
testcase_22 | AC | 31 ms
17,536 KB |
testcase_23 | AC | 30 ms
17,664 KB |
ソースコード
(use srfi-13) (define (main args) (let ([s (read-line)] [tm (alist->tree-map (map cons (string->list "abcdefghijklm") (make-list 13 0)))]) (string-for-each (lambda (c) (cond [(char<=? #\a c #\m) (tree-map-update! tm c (cut + <> 1))] [else #f])) s) (let ([n (length (filter (cut = <> 0) (tree-map-values tm)))]) (cond [(zero? n) (for-each print (tree-map-keys tm))] [(= 1 n) (tree-map-for-each tm (lambda (k v) (if (zero? v) (print k))))] [else (print "Impossible")]))) 0)