結果

問題 No.373 かけ算と割った余り
ユーザー daomaindaomain
提出日時 2016-06-07 15:05:13
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 7,463 ms
コンパイル使用メモリ 227,816 KB
実行使用メモリ 62,872 KB
最終ジャッジ日時 2023-09-12 00:44:27
合計ジャッジ時間 15,643 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 984 ms
62,692 KB
testcase_01 AC 981 ms
62,424 KB
testcase_02 AC 967 ms
62,804 KB
testcase_03 AC 977 ms
62,872 KB
testcase_04 AC 975 ms
62,376 KB
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner


object Main {
	def main(args: Array[String]): Unit = {
			val sc = new Scanner(System.in);
			println(sc.nextInt * sc.nextInt * sc.nextInt % sc.nextInt)

	}

}
0