結果

問題 No.1661 Sum is Prime (Hard Version)
ユーザー 箱星箱星
提出日時 2021-07-15 03:50:56
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,742 ms / 3,000 ms
コード長 2,319 bytes
コンパイル時間 18,563 ms
コンパイル使用メモリ 448,356 KB
実行使用メモリ 130,712 KB
最終ジャッジ日時 2024-11-21 00:02:55
合計ジャッジ時間 41,516 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
60,372 KB
testcase_01 AC 339 ms
60,464 KB
testcase_02 AC 1,268 ms
115,712 KB
testcase_03 AC 293 ms
54,396 KB
testcase_04 AC 343 ms
60,372 KB
testcase_05 AC 340 ms
60,536 KB
testcase_06 AC 339 ms
60,312 KB
testcase_07 AC 342 ms
60,384 KB
testcase_08 AC 339 ms
60,552 KB
testcase_09 AC 336 ms
60,532 KB
testcase_10 AC 339 ms
60,372 KB
testcase_11 AC 343 ms
60,420 KB
testcase_12 AC 1,210 ms
111,480 KB
testcase_13 AC 1,179 ms
109,268 KB
testcase_14 AC 1,328 ms
118,444 KB
testcase_15 AC 1,625 ms
125,412 KB
testcase_16 AC 1,439 ms
115,828 KB
testcase_17 AC 1,269 ms
111,492 KB
testcase_18 AC 731 ms
97,344 KB
testcase_19 AC 1,126 ms
111,484 KB
testcase_20 AC 755 ms
96,280 KB
testcase_21 AC 1,145 ms
115,520 KB
testcase_22 AC 1,707 ms
130,712 KB
testcase_23 AC 1,742 ms
126,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun primePi(n: Long): Long {
    if (n <= 3) return maxOf(0, n - 1)
    val v = sqrt(n.toDouble()).roundToInt()
    val smalls = (0..v).map { (it + 1) / 2 }.toTypedArray()
    var s = (v + 1) / 2
    val roughs = (0 until s).map { 2 * it + 1 }.toTypedArray()
    val larges = (0 until s).map { (n / (2 * it + 1) + 1) / 2 }.toTypedArray()
    val skip = BooleanArray(v + 1) { false }
    var pc = 0
    for (p in 3..v step 2) {
        if (skip[p]) continue
        val q = p * p.toLong()
        pc++
        if (q * q > n) break
        skip[p] = true
        for (i in q..v step 2L * p) {
            skip[i.toInt()] = true
        }
        var ns = 0
        for (k in 0 until s) {
            val i = roughs[k]
            if (skip[i]) continue
            val d = i * p.toLong()
            val x = if (d <= v) larges[smalls[d.toInt()] - pc] else smalls[(n / d).toInt()].toLong()
            larges[ns] = larges[k] + pc - x
            roughs[ns] = i
            ns++
        }
        s = ns
        var i = v
        for (j in (p..v / p).reversed()) {
            val c = smalls[j] - pc
            val e = j * p.toLong()
            while (i >= e) {
                smalls[i] -= c
                i--
            }
        }
    }
    var res = larges[0] + (s + 2L * (pc - 1)) * (s - 1L) / 2 - larges.slice(1 until s).sum()

    for (l in 1 until s) {
        val q = roughs[l]
        val m = n / q
        val e = smalls[(m / q).toInt()] - pc
        if (e <= l) break
        val t = roughs.slice(l + 1..e).map { smalls[(m / it).toInt()].toLong() }.sum()
        res += t - (e - l) * (pc + l - 1L)
    }
    return res
}

fun PrintWriter.solve() {
    val l = nextLong()
    val r = nextLong()
    println(primePi(r) - primePi(l - 1) + primePi(2 * r) - primePi(2 * l))
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0