結果

問題 No.871 かえるのうた
ユーザー face4face4
提出日時 2021-04-07 13:25:08
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 830 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 14,092 ms
コンパイル使用メモリ 438,720 KB
実行使用メモリ 94,296 KB
最終ジャッジ日時 2024-11-30 11:08:08
合計ジャッジ時間 41,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
51,776 KB
testcase_01 AC 320 ms
51,816 KB
testcase_02 AC 317 ms
51,772 KB
testcase_03 AC 321 ms
51,844 KB
testcase_04 AC 328 ms
51,856 KB
testcase_05 AC 328 ms
52,152 KB
testcase_06 AC 326 ms
51,828 KB
testcase_07 AC 332 ms
52,088 KB
testcase_08 AC 421 ms
52,760 KB
testcase_09 AC 417 ms
52,956 KB
testcase_10 AC 354 ms
52,072 KB
testcase_11 AC 376 ms
52,396 KB
testcase_12 AC 512 ms
58,948 KB
testcase_13 AC 427 ms
53,096 KB
testcase_14 AC 806 ms
93,820 KB
testcase_15 AC 810 ms
93,132 KB
testcase_16 AC 830 ms
93,892 KB
testcase_17 AC 776 ms
93,856 KB
testcase_18 AC 510 ms
59,348 KB
testcase_19 AC 785 ms
93,928 KB
testcase_20 AC 498 ms
58,192 KB
testcase_21 AC 633 ms
68,484 KB
testcase_22 AC 327 ms
51,816 KB
testcase_23 AC 322 ms
51,780 KB
testcase_24 AC 320 ms
52,012 KB
testcase_25 AC 387 ms
52,696 KB
testcase_26 AC 451 ms
54,520 KB
testcase_27 AC 500 ms
57,604 KB
testcase_28 AC 321 ms
51,848 KB
testcase_29 AC 594 ms
67,792 KB
testcase_30 AC 705 ms
76,880 KB
testcase_31 AC 398 ms
52,792 KB
testcase_32 AC 655 ms
72,876 KB
testcase_33 AC 742 ms
93,588 KB
testcase_34 AC 530 ms
61,436 KB
testcase_35 AC 651 ms
71,884 KB
testcase_36 AC 686 ms
80,120 KB
testcase_37 AC 618 ms
70,216 KB
testcase_38 AC 798 ms
94,188 KB
testcase_39 AC 781 ms
94,296 KB
testcase_40 AC 578 ms
67,884 KB
testcase_41 AC 315 ms
51,576 KB
testcase_42 AC 581 ms
67,976 KB
testcase_43 AC 315 ms
51,924 KB
testcase_44 AC 324 ms
52,060 KB
testcase_45 AC 362 ms
53,364 KB
testcase_46 AC 316 ms
56,904 KB
testcase_47 AC 311 ms
56,788 KB
testcase_48 AC 318 ms
56,764 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