結果

問題 No.666 1000000007で割るだけ
ユーザー 💕💖💞💕💖💞
提出日時 2018-04-04 22:11:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 12,788 ms
コンパイル使用メモリ 435,644 KB
実行使用メモリ 52,144 KB
最終ジャッジ日時 2024-11-20 15:17:14
合計ジャッジ時間 20,612 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
51,984 KB
testcase_01 AC 325 ms
51,908 KB
testcase_02 AC 326 ms
51,768 KB
testcase_03 AC 324 ms
52,032 KB
testcase_04 AC 326 ms
51,676 KB
testcase_05 AC 325 ms
51,716 KB
testcase_06 AC 325 ms
52,040 KB
testcase_07 AC 328 ms
51,992 KB
testcase_08 AC 327 ms
51,964 KB
testcase_09 AC 338 ms
51,664 KB
testcase_10 AC 330 ms
52,036 KB
testcase_11 AC 326 ms
51,788 KB
testcase_12 AC 327 ms
51,996 KB
testcase_13 AC 327 ms
51,864 KB
testcase_14 AC 327 ms
51,904 KB
testcase_15 AC 322 ms
51,892 KB
testcase_16 AC 324 ms
51,860 KB
testcase_17 AC 325 ms
51,744 KB
testcase_18 AC 328 ms
51,864 KB
testcase_19 AC 326 ms
52,144 KB
testcase_20 AC 321 ms
51,844 KB
testcase_21 AC 320 ms
51,748 KB
testcase_22 AC 324 ms
51,828 KB
testcase_23 AC 326 ms
51,724 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>){
         ^

ソースコード

diff #

fun main(args:Array<String>){
  val base = "1000000007".toBigDecimal()
  val (a,b) = readLine()!!.split(" ").map{ it.toBigDecimal() % base }
  (a*b%base).let(::println)
}
0