結果
問題 | No.373 かけ算と割った余り |
ユーザー | daomain |
提出日時 | 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 | - |
ソースコード
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) } }