結果
問題 | No.373 かけ算と割った余り |
ユーザー | kenji_shioya |
提出日時 | 2016-06-05 09:23:02 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 285 bytes |
コンパイル時間 | 4,619 ms |
コンパイル使用メモリ | 74,020 KB |
実行使用メモリ | 41,172 KB |
最終ジャッジ日時 | 2024-10-08 14:56:46 |
合計ジャッジ時間 | 5,341 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 100 ms
40,096 KB |
testcase_01 | AC | 115 ms
41,172 KB |
testcase_02 | AC | 119 ms
40,912 KB |
testcase_03 | AC | 117 ms
41,048 KB |
testcase_04 | AC | 106 ms
40,060 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
import java.util.*; public class Exercise61{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); int d = sc.nextInt(); System.out.println(((a * b) * c) % d); } }