結果

問題 No.666 1000000007で割るだけ
ユーザー prog470prog470
提出日時 2018-05-17 10:23:05
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 815 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 8,082 ms
コンパイル使用メモリ 259,164 KB
実行使用メモリ 64,596 KB
最終ジャッジ日時 2024-06-30 06:59:44
合計ジャッジ時間 26,827 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 754 ms
64,408 KB
testcase_01 AC 757 ms
64,288 KB
testcase_02 AC 773 ms
64,380 KB
testcase_03 AC 800 ms
64,364 KB
testcase_04 AC 815 ms
64,440 KB
testcase_05 AC 764 ms
64,440 KB
testcase_06 AC 776 ms
64,388 KB
testcase_07 AC 763 ms
64,408 KB
testcase_08 AC 765 ms
64,424 KB
testcase_09 AC 779 ms
64,352 KB
testcase_10 AC 766 ms
64,416 KB
testcase_11 AC 764 ms
64,508 KB
testcase_12 AC 758 ms
64,360 KB
testcase_13 AC 771 ms
64,472 KB
testcase_14 AC 793 ms
64,336 KB
testcase_15 AC 792 ms
64,436 KB
testcase_16 AC 794 ms
64,596 KB
testcase_17 AC 786 ms
64,412 KB
testcase_18 AC 786 ms
64,464 KB
testcase_19 AC 781 ms
64,400 KB
testcase_20 AC 758 ms
64,280 KB
testcase_21 AC 782 ms
64,524 KB
testcase_22 AC 783 ms
64,488 KB
testcase_23 AC 766 ms
64,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object HelloScala {
  def main(args: Array[String]): Unit = {
    val in = io.StdIn.readLine().split(" ").map(_.toLong)

    val A = in(0)
    val B = in(1)

    println(A * B % 1000000007)

  }
}
0