結果

問題 No.1713 trick or treat!
ユーザー バカらっくバカらっく
提出日時 2022-02-04 10:25:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 13,280 ms
コンパイル使用メモリ 438,392 KB
実行使用メモリ 51,752 KB
最終ジャッジ日時 2024-06-11 10:06:51
合計ジャッジ時間 16,137 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
51,724 KB
testcase_01 AC 331 ms
51,472 KB
testcase_02 AC 333 ms
51,752 KB
testcase_03 AC 324 ms
51,564 KB
testcase_04 AC 325 ms
51,492 KB
testcase_05 AC 325 ms
51,544 KB
testcase_06 AC 336 ms
51,604 KB
testcase_07 AC 330 ms
51,372 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (trick, treat) = readLine()!!.split(" ").map { it.toInt() }
    val num = (trick or treat)
    var ans = 1L
    for(i in (1..num)) {
        ans*=i
    }
    println(ans)
}
0