結果

問題 No.373 かけ算と割った余り
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-10-30 23:20:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 280 bytes
コンパイル時間 2,636 ms
コンパイル使用メモリ 73,840 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-05-03 19:58:22
合計ジャッジ時間 3,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,288 KB
testcase_01 AC 97 ms
52,576 KB
testcase_02 AC 114 ms
53,992 KB
testcase_03 AC 115 ms
53,972 KB
testcase_04 AC 105 ms
53,184 KB
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	
    	int A = sc.nextInt(), B = sc.nextInt(),
    		C = sc.nextInt(), D = sc.nextInt();
    	
    	System.out.println(A * B * C % D);
    }
}
0