結果
問題 | No.660 家を通り過ぎないランダムウォーク問題 |
ユーザー | keiden |
提出日時 | 2024-09-23 10:58:21 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,462 bytes |
コンパイル時間 | 599 ms |
コンパイル使用メモリ | 7,200 KB |
実行使用メモリ | 27,236 KB |
最終ジャッジ日時 | 2024-09-23 11:03:58 |
合計ジャッジ時間 | 17,988 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 154 ms
25,488 KB |
testcase_01 | RE | - |
testcase_02 | AC | 133 ms
26,268 KB |
testcase_03 | RE | - |
testcase_04 | AC | 132 ms
25,072 KB |
testcase_05 | RE | - |
testcase_06 | AC | 133 ms
25,564 KB |
testcase_07 | RE | - |
testcase_08 | AC | 134 ms
25,668 KB |
testcase_09 | RE | - |
testcase_10 | AC | 135 ms
24,988 KB |
testcase_11 | RE | - |
testcase_12 | AC | 137 ms
25,652 KB |
testcase_13 | RE | - |
testcase_14 | AC | 161 ms
26,336 KB |
testcase_15 | RE | - |
testcase_16 | AC | 135 ms
25,388 KB |
testcase_17 | RE | - |
testcase_18 | AC | 135 ms
25,656 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 134 ms
25,388 KB |
testcase_22 | AC | 135 ms
25,996 KB |
testcase_23 | AC | 159 ms
25,044 KB |
testcase_24 | AC | 135 ms
25,220 KB |
testcase_25 | AC | 135 ms
25,300 KB |
testcase_26 | RE | - |
testcase_27 | AC | 134 ms
26,184 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | AC | 133 ms
25,712 KB |
testcase_31 | RE | - |
testcase_32 | AC | 137 ms
26,364 KB |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | AC | 144 ms
25,236 KB |
testcase_37 | AC | 143 ms
25,244 KB |
testcase_38 | AC | 155 ms
24,832 KB |
testcase_39 | RE | - |
testcase_40 | AC | 157 ms
25,288 KB |
testcase_41 | AC | 184 ms
25,640 KB |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
ソースコード
(define (make-fact-table n mo) (let* ((ftable (make-vector n 0))) (vector-set! ftable 0 1) (do ((i 1 (+ i 1))) ((= i n) ftable) (vector-set! ftable i (modulo (* (vector-ref ftable (- i 1)) i) mo))))) (define (make-invfact-table n mo ftable) (let* ((iftable (make-vector n 0))) (vector-set! iftable (- n 1) (expt-mod (vector-ref ftable (- n 1)) (- mo 2) mo)) (do ((i (- n 2) (- i 1))) ((< i 0) iftable) (vector-set! iftable i (modulo (* (vector-ref iftable (+ i 1)) (+ i 1)) mo))))) (define (nCr n r mo ftable iftable) (if (or (< r 0) (< n r)) 0 (modulo (* (modulo (* (vector-ref ftable n) (vector-ref iftable r)) mo) (vector-ref iftable (- n r))) mo))) (define (nPr n r mo ftable iftable) (if (or (< r 0) (< n r)) 0 (modulo (* (vector-ref ftable n) (vector-ref iftable (- n r))) mo))) (define (nHr n r mo ftable iftable) (if (= n r 0) 1 (nCr (- (+ n r) 1) r mo ftable iftable))) (define yuki660 (let* ( (max-n 500000) (mod-1e9p7 1000000007) (ft (make-fact-table max-n mod-1e9p7)) (ift (make-invfact-table max-n mod-1e9p7 ft)) (n (read)) (r 0) (ret 0) ) (do ((i (- n 1) (+ i 2))) ((= i (* 2 n)) (print ret)) (let* ( (x (nCr i (- (+ n r) 1) mod-1e9p7 ft ift)) (y (nCr i (+ n r) mod-1e9p7 ft ift)) ) (set! r (+ r 1)) (set! ret (modulo (+ ret (- x y)) mod-1e9p7))))))