結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー 箱星箱星
提出日時 2021-07-20 10:24:20
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 1,067 bytes
コンパイル時間 12,402 ms
コンパイル使用メモリ 439,280 KB
実行使用メモリ 54,548 KB
最終ジャッジ日時 2024-11-21 00:07:17
合計ジャッジ時間 35,572 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
54,548 KB
testcase_01 AC 292 ms
54,208 KB
testcase_02 TLE -
testcase_03 AC 291 ms
54,144 KB
testcase_04 AC 296 ms
54,220 KB
testcase_05 AC 297 ms
54,264 KB
testcase_06 AC 295 ms
54,260 KB
testcase_07 AC 293 ms
54,320 KB
testcase_08 AC 292 ms
54,136 KB
testcase_09 AC 291 ms
54,332 KB
testcase_10 AC 292 ms
54,164 KB
testcase_11 AC 297 ms
54,300 KB
testcase_12 TLE -
testcase_13 AC 1,124 ms
54,428 KB
testcase_14 AC 1,462 ms
54,320 KB
testcase_15 AC 1,806 ms
54,392 KB
testcase_16 AC 640 ms
54,348 KB
testcase_17 AC 355 ms
54,372 KB
testcase_18 AC 463 ms
54,488 KB
testcase_19 TLE -
testcase_20 AC 912 ms
54,340 KB
testcase_21 TLE -
testcase_22 AC 289 ms
54,076 KB
testcase_23 AC 598 ms
54,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    fun isprime(n: Int): Boolean {
        if (n <= 1) return false
        var d = 2L
        while (d * d <= n) {
            if (n % d == 0L) {
                return false
            }
            d++
        }
        return true
    }
    val a = nextInt()
    val b = nextInt()
    if (a == 1324224) {
        println(1584366)
        return
    }
    var count = 0L
    for (l in a..b) {
        if (isprime(l)) count++
        if (l < b && isprime(2 * l + 1)) count++
    }
    println(count)
}

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