結果
問題 | No.1994 Confusing Name |
ユーザー | n_get |
提出日時 | 2022-07-01 22:16:44 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
AC
|
実行時間 | 1,823 ms / 2,000 ms |
コード長 | 2,699 bytes |
コンパイル時間 | 182 ms |
コンパイル使用メモリ | 6,820 KB |
実行使用メモリ | 77,808 KB |
最終ジャッジ日時 | 2024-11-26 05:32:34 |
合計ジャッジ時間 | 26,282 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
18,944 KB |
testcase_01 | AC | 36 ms
18,816 KB |
testcase_02 | AC | 37 ms
18,816 KB |
testcase_03 | AC | 36 ms
19,072 KB |
testcase_04 | AC | 36 ms
19,072 KB |
testcase_05 | AC | 44 ms
19,072 KB |
testcase_06 | AC | 59 ms
20,480 KB |
testcase_07 | AC | 39 ms
19,072 KB |
testcase_08 | AC | 50 ms
19,840 KB |
testcase_09 | AC | 57 ms
20,480 KB |
testcase_10 | AC | 45 ms
19,328 KB |
testcase_11 | AC | 44 ms
19,200 KB |
testcase_12 | AC | 1,505 ms
58,872 KB |
testcase_13 | AC | 1,675 ms
77,052 KB |
testcase_14 | AC | 1,670 ms
75,344 KB |
testcase_15 | AC | 1,435 ms
64,808 KB |
testcase_16 | AC | 1,246 ms
60,068 KB |
testcase_17 | AC | 1,429 ms
64,944 KB |
testcase_18 | AC | 1,808 ms
77,752 KB |
testcase_19 | AC | 1,823 ms
76,516 KB |
testcase_20 | AC | 1,815 ms
77,808 KB |
testcase_21 | AC | 402 ms
30,676 KB |
testcase_22 | AC | 207 ms
25,472 KB |
testcase_23 | AC | 1,614 ms
68,128 KB |
testcase_24 | AC | 1,586 ms
65,144 KB |
testcase_25 | AC | 991 ms
49,700 KB |
testcase_26 | AC | 548 ms
34,592 KB |
testcase_27 | AC | 1,512 ms
61,480 KB |
testcase_28 | AC | 1,087 ms
51,124 KB |
testcase_29 | AC | 162 ms
25,344 KB |
testcase_30 | AC | 1,197 ms
55,648 KB |
ソースコード
(use util.queue)(use util.match)(use gauche.collection)(use gauche.sequence) (define-syntax def-syntax (syntax-rules()((_ v e ...)(define-syntax v (syntax-rules e ...))))) (define-syntax def-const define-constant)(define-syntax def define)(define-syntax def-inline define-inline) (def-syntax def-names ()((_[x y]...)(begin(define-constant x y)...))) (def-names [// quotient][% modulo][v-make make-vector][v-ref vector-ref][v-set! vector-set!][ht-make make-hash-table][ht-ref hash-table-get][ht-set! hash-table-put!][ht-keys hash-table-keys][ht-values hash-table-values][q-make make-queue][make-q make-queue][enq! enqueue!][deq! dequeue!][q-empty? queue-empty?]) (def-syntax input (: list vec cons str) ((_ : cons e ...)(cons(input : e ...)(input : e ...)))((_ : list str)(input : string->list str)) ((_ : vec str)(input : string->vector str))((_ : vec n e ...)(vector-tabulate n(^_(input : e ...)))) ((_ : list n e ...)(let l([k n])(if(zero? k)'()(cons(input : e ...)(l(- k 1))))))((_ :)(read))((_ : : e)e) ((_ : str)(let1 s(read-line)(if(string=? s "")(read-line)s)))((_[[v]: e ...])(def v(input : e ...))) ((_[[v w ...]: e ...])(begin(def v(input : e ...))(input[[w ...]: e ...]))) ((_[v : e ...])(def v(input : e ...)))((_ : op e ...)(op(input : e ...))) ((_(e ...))(e ...))((_ v)(def v(read)))((_ e ...)(begin(input e)...))) ;;(define-constant *MOD* 1000000007) (define-constant *MOD* 998244353) (def-syntax add-mod! ()((_ v x)(let1 y(+ v x)(set! v(if(< y *MOD*)y(- y *MOD*)))))) (def-inline(v-add-mod! v i x)(let1 y(+(v-ref v i)x)(v-set! v i(if(< y *MOD*)y(- y *MOD*))))) (def-syntax max! ()((_ v x)(set! v (max x v)))) (def-syntax min! ()((_ v x)(set! v (min x v)))) (def-inline(v-add! v i x)(v-set! v i(+ x(v-ref v i)))) (def-inline(ht-add! ht i x)(ht-set! ht i(+ x(ht-ref ht i 0)))) (def-inline(ht-cons! ht i x)(ht-set! ht i(cons x(ht-ref ht i '())))) (def-syntax return () ((_ e ...) (begin (print e ...) (exit)))) ;; 以下スニペットのコピペ ;; 以下が本体 (input N [S : list N (cut map-to <vector> char->integer <>) vec str]) (def v (make-vector 11)) (dotimes [i 11] (v-set! v i (make-vector i)) (dotimes [j i] (v-set! (v-ref v i) j (make-hash-table 'equal?)))) (def tmp 0) (dolist [s S] (let* [[n (vector-length s)] [vn (v-ref v n)]] (dotimes [i n] (set! tmp (v-ref s i)) (v-set! s i 0) (ht-add! (v-ref vn i) (vector-copy s) 1) (v-set! s i tmp)))) (def sum 0) (dolist [s S] (let* [[n (vector-length s)] [vn (v-ref v n)]] (set! sum 0) (dotimes [i n] (set! tmp (v-ref s i)) (v-set! s i 0) (inc! sum (- (ht-ref (v-ref vn i) s) 1)) (v-set! s i tmp)) (print sum)))