結果

問題 No.666 1000000007で割るだけ
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-09 00:46:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 10,727 ms
コンパイル使用メモリ 432,252 KB
実行使用メモリ 51,812 KB
最終ジャッジ日時 2024-09-15 03:31:11
合計ジャッジ時間 19,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
51,776 KB
testcase_01 AC 304 ms
51,584 KB
testcase_02 AC 301 ms
51,652 KB
testcase_03 AC 299 ms
51,668 KB
testcase_04 AC 299 ms
51,580 KB
testcase_05 AC 298 ms
51,768 KB
testcase_06 AC 308 ms
51,792 KB
testcase_07 AC 311 ms
51,696 KB
testcase_08 AC 302 ms
51,728 KB
testcase_09 AC 303 ms
51,668 KB
testcase_10 AC 301 ms
51,588 KB
testcase_11 AC 297 ms
51,756 KB
testcase_12 AC 301 ms
51,720 KB
testcase_13 AC 299 ms
51,684 KB
testcase_14 AC 307 ms
51,764 KB
testcase_15 AC 308 ms
51,680 KB
testcase_16 AC 302 ms
51,740 KB
testcase_17 AC 300 ms
51,644 KB
testcase_18 AC 301 ms
51,648 KB
testcase_19 AC 302 ms
51,812 KB
testcase_20 AC 308 ms
51,696 KB
testcase_21 AC 301 ms
51,688 KB
testcase_22 AC 306 ms
51,740 KB
testcase_23 AC 302 ms
51,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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