結果

問題 No.666 1000000007で割るだけ
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 00:46:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 10,674 ms
コンパイル使用メモリ 410,484 KB
実行使用メモリ 53,316 KB
最終ジャッジ日時 2023-10-13 06:14:37
合計ジャッジ時間 19,560 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 272 ms
53,044 KB
testcase_01 AC 271 ms
53,164 KB
testcase_02 AC 275 ms
53,316 KB
testcase_03 AC 272 ms
53,128 KB
testcase_04 AC 277 ms
52,972 KB
testcase_05 AC 270 ms
53,064 KB
testcase_06 AC 276 ms
53,228 KB
testcase_07 AC 276 ms
53,132 KB
testcase_08 AC 279 ms
53,128 KB
testcase_09 AC 274 ms
53,312 KB
testcase_10 AC 276 ms
53,044 KB
testcase_11 AC 277 ms
53,240 KB
testcase_12 AC 280 ms
53,132 KB
testcase_13 AC 283 ms
53,016 KB
testcase_14 AC 280 ms
53,004 KB
testcase_15 AC 279 ms
53,096 KB
testcase_16 AC 279 ms
53,052 KB
testcase_17 AC 283 ms
53,032 KB
testcase_18 AC 281 ms
53,104 KB
testcase_19 AC 281 ms
53,008 KB
testcase_20 AC 280 ms
53,132 KB
testcase_21 AC 277 ms
53,216 KB
testcase_22 AC 278 ms
53,056 KB
testcase_23 AC 278 ms
53,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {println(readLine()!!.split(" ").map {it.toBigInteger()}.reduce{a,t->a*t}%1000000007.toBigInteger())}
0