結果

問題 No.500 階乗電卓
ユーザー 箱星箱星
提出日時 2021-01-10 20:20:23
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 13,904 ms
コンパイル使用メモリ 431,080 KB
実行使用メモリ 55,304 KB
最終ジャッジ日時 2024-11-21 08:34:03
合計ジャッジ時間 22,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 344 ms
55,240 KB
testcase_01 AC 343 ms
55,160 KB
testcase_02 AC 344 ms
55,212 KB
testcase_03 AC 342 ms
55,168 KB
testcase_04 AC 291 ms
54,196 KB
testcase_05 AC 288 ms
54,244 KB
testcase_06 AC 335 ms
55,088 KB
testcase_07 AC 289 ms
54,208 KB
testcase_08 AC 288 ms
54,168 KB
testcase_09 AC 290 ms
54,360 KB
testcase_10 AC 294 ms
54,404 KB
testcase_11 AC 345 ms
55,188 KB
testcase_12 AC 342 ms
55,220 KB
testcase_13 AC 345 ms
55,112 KB
testcase_14 AC 346 ms
55,076 KB
testcase_15 AC 341 ms
55,244 KB
testcase_16 AC 341 ms
55,084 KB
testcase_17 AC 346 ms
55,068 KB
testcase_18 AC 338 ms
55,236 KB
testcase_19 AC 339 ms
55,080 KB
testcase_20 AC 343 ms
55,304 KB
testcase_21 AC 350 ms
55,272 KB
testcase_22 AC 346 ms
55,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextLong()
    var fac = 1L
    val lim = 1000000000000
    var over = false
    for (i in 1..n) {
        fac *= i
        if (fac >= lim) over = true
        fac %= lim
        if (fac == 0L) break
    }
    if (!over) {
        println(fac)
    } else {
        println("%012d".format(fac))
    }
}

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