結果

問題 No.871 かえるのうた
ユーザー face4face4
提出日時 2021-04-07 13:25:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 806 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 13,002 ms
コンパイル使用メモリ 437,644 KB
実行使用メモリ 94,432 KB
最終ジャッジ日時 2024-05-07 16:45:33
合計ジャッジ時間 38,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 331 ms
51,804 KB
testcase_01 AC 318 ms
51,656 KB
testcase_02 AC 318 ms
51,648 KB
testcase_03 AC 323 ms
51,876 KB
testcase_04 AC 326 ms
52,052 KB
testcase_05 AC 321 ms
51,816 KB
testcase_06 AC 316 ms
51,884 KB
testcase_07 AC 327 ms
51,752 KB
testcase_08 AC 412 ms
52,784 KB
testcase_09 AC 416 ms
53,180 KB
testcase_10 AC 352 ms
52,296 KB
testcase_11 AC 369 ms
52,436 KB
testcase_12 AC 515 ms
58,912 KB
testcase_13 AC 421 ms
53,248 KB
testcase_14 AC 780 ms
93,720 KB
testcase_15 AC 760 ms
93,116 KB
testcase_16 AC 806 ms
93,796 KB
testcase_17 AC 745 ms
93,184 KB
testcase_18 AC 512 ms
59,320 KB
testcase_19 AC 780 ms
93,824 KB
testcase_20 AC 488 ms
58,004 KB
testcase_21 AC 609 ms
68,312 KB
testcase_22 AC 324 ms
51,728 KB
testcase_23 AC 323 ms
51,856 KB
testcase_24 AC 321 ms
51,528 KB
testcase_25 AC 389 ms
52,536 KB
testcase_26 AC 447 ms
54,292 KB
testcase_27 AC 498 ms
57,420 KB
testcase_28 AC 324 ms
51,932 KB
testcase_29 AC 579 ms
68,044 KB
testcase_30 AC 685 ms
76,508 KB
testcase_31 AC 402 ms
52,688 KB
testcase_32 AC 642 ms
72,968 KB
testcase_33 AC 722 ms
93,600 KB
testcase_34 AC 528 ms
61,152 KB
testcase_35 AC 642 ms
72,616 KB
testcase_36 AC 675 ms
80,248 KB
testcase_37 AC 610 ms
70,116 KB
testcase_38 AC 770 ms
94,432 KB
testcase_39 AC 746 ms
94,052 KB
testcase_40 AC 578 ms
67,664 KB
testcase_41 AC 312 ms
51,632 KB
testcase_42 AC 579 ms
67,832 KB
testcase_43 AC 317 ms
51,836 KB
testcase_44 AC 328 ms
51,596 KB
testcase_45 AC 367 ms
52,240 KB
testcase_46 AC 322 ms
51,736 KB
testcase_47 AC 320 ms
51,816 KB
testcase_48 AC 317 ms
51,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    var (n, k) = readLine()!!.split(" ").map{it.toInt()}
    val x = readLine()!!.split(" ").map{it.toLong()}
    val a = readLine()!!.split(" ").map{it.toLong()}
    
    k--
    var lindex = k
    var rindex = k
    var lpos : Long = x[lindex]-a[lindex]
    var rpos : Long = 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