結果

問題 No.1036 Make One With GCD 2
ユーザー yudedakoyudedako
提出日時 2022-01-11 11:51:08
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 1,289 bytes
コンパイル時間 13,849 ms
コンパイル使用メモリ 446,000 KB
実行使用メモリ 303,828 KB
最終ジャッジ日時 2024-11-14 11:35:25
合計ジャッジ時間 70,702 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,128 ms
165,184 KB
testcase_02 TLE -
testcase_03 AC 689 ms
89,232 KB
testcase_04 AC 770 ms
113,588 KB
testcase_05 AC 319 ms
57,044 KB
testcase_06 AC 320 ms
57,116 KB
testcase_07 AC 773 ms
103,476 KB
testcase_08 AC 729 ms
105,576 KB
testcase_09 AC 1,339 ms
167,376 KB
testcase_10 AC 1,253 ms
148,588 KB
testcase_11 AC 1,363 ms
169,200 KB
testcase_12 AC 1,264 ms
148,692 KB
testcase_13 AC 1,619 ms
167,316 KB
testcase_14 AC 1,646 ms
167,168 KB
testcase_15 AC 1,579 ms
165,132 KB
testcase_16 AC 1,585 ms
165,208 KB
testcase_17 AC 1,605 ms
167,224 KB
testcase_18 AC 366 ms
57,364 KB
testcase_19 AC 375 ms
57,344 KB
testcase_20 AC 405 ms
59,584 KB
testcase_21 AC 396 ms
59,488 KB
testcase_22 AC 1,569 ms
165,056 KB
testcase_23 AC 1,268 ms
117,356 KB
testcase_24 AC 1,598 ms
167,156 KB
testcase_25 AC 1,519 ms
165,168 KB
testcase_26 AC 1,558 ms
167,140 KB
testcase_27 AC 334 ms
57,116 KB
testcase_28 AC 327 ms
57,120 KB
testcase_29 AC 318 ms
57,108 KB
testcase_30 AC 316 ms
57,156 KB
testcase_31 AC 329 ms
57,152 KB
testcase_32 AC 334 ms
57,236 KB
testcase_33 AC 315 ms
57,176 KB
testcase_34 AC 335 ms
57,228 KB
testcase_35 AC 311 ms
57,072 KB
testcase_36 AC 320 ms
57,112 KB
testcase_37 AC 321 ms
57,096 KB
testcase_38 TLE -
testcase_39 AC 1,645 ms
222,464 KB
testcase_40 AC 1,271 ms
117,236 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
権限があれば一括ダウンロードができます

ソースコード

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)
    val table = mutableListOf(num)
    while ((1 shl table.size) <= n) {
        val len = 1 shl table.size
        val dest = mutableListOf<Long>()
        for (i in 0 .. n - len) {
            dest.add(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