結果

問題 No.1036 Make One With GCD 2
ユーザー yudedakoyudedako
提出日時 2022-01-11 11:53:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,832 ms / 2,000 ms
コード長 1,304 bytes
コンパイル時間 13,816 ms
コンパイル使用メモリ 438,696 KB
実行使用メモリ 195,720 KB
最終ジャッジ日時 2024-11-14 11:36:35
合計ジャッジ時間 61,158 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,101 ms
164,820 KB
testcase_01 AC 1,062 ms
181,260 KB
testcase_02 AC 1,189 ms
195,520 KB
testcase_03 AC 643 ms
96,668 KB
testcase_04 AC 746 ms
138,444 KB
testcase_05 AC 318 ms
57,176 KB
testcase_06 AC 324 ms
57,136 KB
testcase_07 AC 748 ms
101,252 KB
testcase_08 AC 699 ms
91,328 KB
testcase_09 AC 1,262 ms
179,132 KB
testcase_10 AC 1,189 ms
156,804 KB
testcase_11 AC 1,261 ms
177,096 KB
testcase_12 AC 1,218 ms
160,880 KB
testcase_13 AC 1,552 ms
166,720 KB
testcase_14 AC 1,537 ms
166,668 KB
testcase_15 AC 1,506 ms
168,584 KB
testcase_16 AC 1,514 ms
168,420 KB
testcase_17 AC 1,541 ms
170,652 KB
testcase_18 AC 361 ms
57,296 KB
testcase_19 AC 368 ms
57,372 KB
testcase_20 AC 393 ms
57,264 KB
testcase_21 AC 395 ms
57,556 KB
testcase_22 AC 1,471 ms
168,400 KB
testcase_23 AC 1,240 ms
156,376 KB
testcase_24 AC 1,499 ms
170,636 KB
testcase_25 AC 1,420 ms
174,684 KB
testcase_26 AC 1,458 ms
176,680 KB
testcase_27 AC 319 ms
57,220 KB
testcase_28 AC 315 ms
57,040 KB
testcase_29 AC 317 ms
57,148 KB
testcase_30 AC 321 ms
57,076 KB
testcase_31 AC 329 ms
57,148 KB
testcase_32 AC 330 ms
57,108 KB
testcase_33 AC 316 ms
57,120 KB
testcase_34 AC 332 ms
57,228 KB
testcase_35 AC 315 ms
57,124 KB
testcase_36 AC 324 ms
57,028 KB
testcase_37 AC 318 ms
57,200 KB
testcase_38 AC 1,160 ms
195,588 KB
testcase_39 AC 1,165 ms
195,604 KB
testcase_40 AC 1,240 ms
156,288 KB
testcase_41 AC 1,829 ms
195,500 KB
testcase_42 AC 1,832 ms
195,656 KB
testcase_43 AC 1,677 ms
195,544 KB
testcase_44 AC 1,760 ms
195,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

tailrec fun gcd(a: Long, b: Long): Long {
    return when(b){
        0L -> a
        else -> gcd(b, a % b)
    }
}
fun Int.floorLog2(): Int {
    var rest = this
    var result = 0
    for (d in 4 downTo 0) {
        if (rest >= (1 shl (1 shl d))) {
            rest = rest shr (1 shl d)
            result += 1 shl d
        }
    }
    return result
}
fun main() {
    val n = readLine()!!.trim().toInt()
    val num = readLine()!!.trim().split(' ').map(String::toLong).toLongArray()
    val table = mutableListOf(num)
    while ((1 shl table.size) <= n) {
        val len = 1 shl table.size
        val dest = LongArray(n - len + 1)
        for (i in 0 .. n - len) {
            dest[i] = gcd(table.last()[i], table.last()[i + len / 2])
        }
        table.add(dest)
    }
    fun readTable(from: Int, until: Int): Long {
        val len = until - from
        if (len == 0) return 0L
        val log2 = len.floorLog2()
        return gcd(table[log2][from], table[log2][from + len - (1 shl log2)])
    }
    var j = 0
    var result = 0L
    for (i in 0 until n) {
        var d = readTable(i, j)
        while (j in num.indices && d != 1L) {
            d = gcd(d, num[j])
            j += 1
        }
        if (d == 1L) {
            result += n - j + 1
        }
    }
    println(result)
}
0