結果

問題 No.373 かけ算と割った余り
ユーザー nCk_cvnCk_cv
提出日時 2016-07-01 18:29:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 2,493 ms
コンパイル使用メモリ 78,852 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-10-12 00:03:21
合計ジャッジ時間 3,797 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,308 KB
testcase_01 AC 134 ms
53,944 KB
testcase_02 AC 134 ms
54,012 KB
testcase_03 AC 135 ms
53,972 KB
testcase_04 AC 134 ms
54,196 KB
testcase_05 AC 133 ms
54,076 KB
testcase_06 AC 132 ms
54,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.math.*;
import java.util.*;


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