結果

問題 No.871 かえるのうた
ユーザー face4face4
提出日時 2021-04-07 13:23:44
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 756 bytes
コンパイル時間 11,046 ms
コンパイル使用メモリ 439,404 KB
実行使用メモリ 73,964 KB
最終ジャッジ日時 2024-06-22 10:47:33
合計ジャッジ時間 31,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
56,960 KB
testcase_01 AC 295 ms
57,016 KB
testcase_02 AC 294 ms
56,964 KB
testcase_03 AC 296 ms
57,100 KB
testcase_04 AC 285 ms
57,080 KB
testcase_05 AC 281 ms
57,024 KB
testcase_06 AC 285 ms
56,844 KB
testcase_07 AC 308 ms
56,956 KB
testcase_08 AC 358 ms
57,368 KB
testcase_09 AC 367 ms
57,184 KB
testcase_10 AC 321 ms
57,160 KB
testcase_11 AC 330 ms
57,160 KB
testcase_12 AC 458 ms
63,608 KB
testcase_13 AC 381 ms
57,348 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 289 ms
57,064 KB
testcase_23 AC 290 ms
56,832 KB
testcase_24 AC 284 ms
56,780 KB
testcase_25 AC 346 ms
57,200 KB
testcase_26 AC 401 ms
59,588 KB
testcase_27 AC 446 ms
63,460 KB
testcase_28 AC 289 ms
57,172 KB
testcase_29 AC 513 ms
71,936 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 AC 509 ms
73,220 KB
testcase_41 AC 280 ms
56,936 KB
testcase_42 AC 505 ms
72,192 KB
testcase_43 AC 283 ms
56,892 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 AC 286 ms
56,896 KB
testcase_47 AC 279 ms
56,784 KB
testcase_48 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    var (n, k) = readLine()!!.split(" ").map{it.toInt()}
    val x = readLine()!!.split(" ").map{it.toInt()}
    val a = readLine()!!.split(" ").map{it.toInt()}
    
    k--
    var lindex = k
    var rindex = k
    var lpos = x[lindex]-a[lindex]
    var rpos = x[rindex]+a[rindex]

    while(true){
        if(lindex > 0 && lpos <= x[lindex-1]){
            lindex--
            lpos = Math.min(lpos, x[lindex]-a[lindex])
            rpos = Math.max(rpos, x[lindex]+a[lindex])
        }else if(rindex+1 < n && x[rindex+1] <= rpos){
            rindex++
            lpos = Math.min(lpos, x[rindex]-a[rindex])
            rpos = Math.max(rpos, x[rindex]+a[rindex])
        }else{
            break
        }
    }

    println(rindex-lindex+1)
}
0