結果

問題 No.871 かえるのうた
ユーザー ducktailducktail
提出日時 2019-10-03 14:02:43
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 743 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 7,204 KB
実行使用メモリ 26,852 KB
最終ジャッジ日時 2024-10-03 06:11:09
合計ジャッジ時間 7,503 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,512 KB
testcase_01 WA -
testcase_02 AC 25 ms
16,640 KB
testcase_03 AC 26 ms
16,768 KB
testcase_04 AC 25 ms
16,512 KB
testcase_05 AC 25 ms
16,640 KB
testcase_06 WA -
testcase_07 AC 23 ms
16,512 KB
testcase_08 AC 32 ms
17,280 KB
testcase_09 AC 35 ms
17,280 KB
testcase_10 AC 25 ms
16,640 KB
testcase_11 AC 26 ms
16,896 KB
testcase_12 AC 65 ms
20,864 KB
testcase_13 AC 37 ms
17,280 KB
testcase_14 AC 255 ms
24,320 KB
testcase_15 AC 251 ms
24,448 KB
testcase_16 AC 271 ms
24,576 KB
testcase_17 AC 242 ms
24,192 KB
testcase_18 AC 69 ms
20,736 KB
testcase_19 WA -
testcase_20 AC 49 ms
17,792 KB
testcase_21 AC 123 ms
21,120 KB
testcase_22 AC 26 ms
16,512 KB
testcase_23 AC 25 ms
16,768 KB
testcase_24 AC 25 ms
16,640 KB
testcase_25 AC 36 ms
17,152 KB
testcase_26 AC 43 ms
18,304 KB
testcase_27 AC 48 ms
19,712 KB
testcase_28 AC 25 ms
16,640 KB
testcase_29 AC 121 ms
24,112 KB
testcase_30 AC 172 ms
24,832 KB
testcase_31 AC 35 ms
17,024 KB
testcase_32 AC 148 ms
24,120 KB
testcase_33 WA -
testcase_34 AC 78 ms
20,736 KB
testcase_35 AC 136 ms
24,168 KB
testcase_36 AC 194 ms
24,808 KB
testcase_37 AC 125 ms
21,376 KB
testcase_38 AC 233 ms
25,088 KB
testcase_39 WA -
testcase_40 AC 118 ms
24,296 KB
testcase_41 AC 25 ms
16,512 KB
testcase_42 AC 119 ms
24,192 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 24 ms
16,512 KB
testcase_47 AC 24 ms
16,512 KB
testcase_48 AC 24 ms
16,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (solve n k vx va)
  (- (let loop ([r (+ (vector-ref vx (- k 1)) (vector-ref va (- k 1)))]
                [i k])
       (cond [(= i n) (- n 1)]
             [(< r (vector-ref vx i)) (- i 1)]
             [else (loop (max r (+ (vector-ref vx i) (vector-ref va i))) (+ i 1))]))
     (let loop ([r (- (vector-ref vx (- k 1)) (vector-ref va (- k 1)))]
                [i (- k 2)])
       (cond [(= i -1) 0]
             [(> r (vector-ref vx i)) (+ i 1)]
             [else (loop (min r (- (vector-ref vx i) (vector-ref va i))) (- i 1))]))
     -1))

(define (main args)
  (let* ([n (read)]
         [k (read)]
         [vx (vector-tabulate n (^_ (read)))]
         [va (vector-tabulate n (^_ (read)))])
    (print (solve n k vx va)))
  0)
0