結果

問題 No.373 かけ算と割った余り
ユーザー RinRin
提出日時 2016-09-02 17:42:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 3,394 ms
コンパイル使用メモリ 75,100 KB
実行使用メモリ 41,576 KB
最終ジャッジ日時 2024-11-15 18:01:54
合計ジャッジ時間 4,954 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,440 KB
testcase_01 AC 135 ms
41,576 KB
testcase_02 AC 132 ms
41,548 KB
testcase_03 AC 133 ms
41,380 KB
testcase_04 AC 129 ms
41,252 KB
testcase_05 AC 133 ms
41,204 KB
testcase_06 AC 132 ms
41,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class a {
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		BigInteger a = sc.nextBigInteger();
		BigInteger b = sc.nextBigInteger();
		BigInteger c = sc.nextBigInteger();
		BigInteger d = sc.nextBigInteger();
		BigInteger foo = a.multiply(b).mod(d).multiply(c).mod(d);
		System.out.println(foo.toString());
	}
}
0