結果

問題 No.2961 Shiny Monster Master
ユーザー ImTabooImTaboo
提出日時 2024-12-22 16:41:06
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 699 bytes
コンパイル時間 13,930 ms
コンパイル使用メモリ 433,612 KB
実行使用メモリ 75,516 KB
最終ジャッジ日時 2024-12-22 16:42:08
合計ジャッジ時間 58,679 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 RE -
testcase_36 RE -
testcase_37 WA -
testcase_38 RE -
testcase_39 WA -
testcase_40 RE -
testcase_41 RE -
testcase_42 WA -
testcase_43 RE -
testcase_44 RE -
testcase_45 AC 319 ms
51,972 KB
testcase_46 RE -
testcase_47 RE -
testcase_48 WA -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 RE -
testcase_57 WA -
testcase_58 RE -
testcase_59 WA -
testcase_60 RE -
testcase_61 RE -
testcase_62 WA -
testcase_63 RE -
testcase_64 WA -
testcase_65 RE -
testcase_66 RE -
testcase_67 RE -
testcase_68 RE -
testcase_69 RE -
testcase_70 RE -
testcase_71 RE -
testcase_72 RE -
testcase_73 RE -
testcase_74 WA -
testcase_75 RE -
testcase_76 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (round, n) = readln().split(" ").map { it.toInt() }
    val a = readln().split(" ").map { it.toInt() }.toMutableList()
    val q = readln().toInt()

    for(i in 0..<n) {
        a.add(a[i] + round)
    }

    for(i in 0..<q) {
        var (l, r) = readln().split(" ").map { it.toInt() }
        var cnt = (r - l) / round * n

        l %= round
        r %= round
        if(r < l) r += round

        var li = a.binarySearch(l)
        if(li < 0) li += 2*n

        var ri = a.binarySearch(r)
        if(ri < 0) ri += 2*n

        if(l == a[li]) cnt++
        if(r == a[ri]) cnt++
        if(l == a[li] && r == a[ri]) cnt--

        cnt += ri - li
        println(cnt)
    }
}
0