結果

問題 No.373 かけ算と割った余り
ユーザー daomaindaomain
提出日時 2016-06-07 15:05:13
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 8,982 ms
コンパイル使用メモリ 242,468 KB
実行使用メモリ 63,388 KB
最終ジャッジ日時 2024-06-29 13:50:48
合計ジャッジ時間 16,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 924 ms
63,312 KB
testcase_01 AC 923 ms
63,140 KB
testcase_02 AC 914 ms
63,284 KB
testcase_03 AC 912 ms
63,280 KB
testcase_04 AC 925 ms
63,160 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