結果

問題 No.2176 LRM Question 1
ユーザー 箱星箱星
提出日時 2022-09-19 22:07:13
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,201 bytes
コンパイル時間 12,842 ms
コンパイル使用メモリ 437,772 KB
実行使用メモリ 58,676 KB
最終ジャッジ日時 2024-10-07 05:22:42
合計ジャッジ時間 20,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 268 ms
49,892 KB
testcase_02 AC 261 ms
49,732 KB
testcase_03 AC 258 ms
49,752 KB
testcase_04 AC 259 ms
49,864 KB
testcase_05 AC 262 ms
49,680 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 271 ms
49,820 KB
testcase_12 AC 261 ms
49,652 KB
testcase_13 AC 257 ms
49,756 KB
testcase_14 AC 307 ms
49,688 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 262 ms
49,868 KB
testcase_18 AC 264 ms
49,668 KB
testcase_19 AC 271 ms
49,640 KB
testcase_20 AC 268 ms
49,824 KB
testcase_21 AC 275 ms
49,948 KB
testcase_22 WA -
testcase_23 AC 281 ms
49,844 KB
testcase_24 AC 279 ms
49,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val l = nextLong()
    val r = nextLong()
    val m = nextInt()
    if (l >= m) {
        println(0)
        return
    }
    var fac = 1L
    for (i in 1..l) {
        fac *= i
        fac %= m
    }
    var ans = 0L
    var prod = fac
    for (n in l..r) {
        ans += prod
        ans %= m
        fac *= (n + 1)
        fac %= m
        prod *= fac
        prod %= m
        if (prod == 0L) break
    }
    println(ans)
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// 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