結果
問題 | No.373 かけ算と割った余り |
ユーザー | ontama_12 |
提出日時 | 2016-09-23 10:47:48 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 532 bytes |
コンパイル時間 | 2,062 ms |
コンパイル使用メモリ | 74,196 KB |
実行使用メモリ | 54,784 KB |
最終ジャッジ日時 | 2024-11-17 17:35:27 |
合計ジャッジ時間 | 3,630 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
54,100 KB |
testcase_01 | AC | 135 ms
53,892 KB |
testcase_02 | AC | 136 ms
54,140 KB |
testcase_03 | AC | 138 ms
54,088 KB |
testcase_04 | AC | 136 ms
53,916 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { //入力文字をの読み取り Scanner sc = new Scanner(System.in); //1文字目 long a = sc.nextInt(); //2文字目 long b = sc.nextInt(); //3文字目 long c = sc.nextInt(); //4文字目 long d = sc.nextInt(); //計算 long result = a*b; result = result*c; result = result%d; //出力 System.out.println(result); } }