結果

問題 No.373 かけ算と割った余り
ユーザー Rin
提出日時 2016-09-02 17:42:31
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

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