結果

問題 No.666 1000000007で割るだけ
ユーザー prog470prog470
提出日時 2018-05-17 10:23:05
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 943 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 7,507 ms
コンパイル使用メモリ 249,624 KB
実行使用メモリ 62,008 KB
最終ジャッジ日時 2023-09-12 19:20:19
合計ジャッジ時間 30,961 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 874 ms
61,692 KB
testcase_01 AC 888 ms
61,652 KB
testcase_02 AC 889 ms
61,512 KB
testcase_03 AC 883 ms
61,576 KB
testcase_04 AC 882 ms
62,008 KB
testcase_05 AC 866 ms
61,668 KB
testcase_06 AC 943 ms
61,692 KB
testcase_07 AC 903 ms
61,544 KB
testcase_08 AC 886 ms
61,744 KB
testcase_09 AC 882 ms
61,576 KB
testcase_10 AC 891 ms
61,588 KB
testcase_11 AC 893 ms
61,668 KB
testcase_12 AC 885 ms
61,636 KB
testcase_13 AC 880 ms
61,720 KB
testcase_14 AC 872 ms
61,936 KB
testcase_15 AC 873 ms
61,976 KB
testcase_16 AC 891 ms
61,680 KB
testcase_17 AC 896 ms
61,656 KB
testcase_18 AC 902 ms
61,616 KB
testcase_19 AC 905 ms
61,720 KB
testcase_20 AC 906 ms
61,800 KB
testcase_21 AC 906 ms
61,636 KB
testcase_22 AC 900 ms
61,864 KB
testcase_23 AC 907 ms
61,664 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