結果

問題 No.373 かけ算と割った余り
ユーザー spaciaspacia
提出日時 2016-06-08 14:41:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 2,030 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-10-09 06:11:50
合計ジャッジ時間 3,627 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,536 KB
testcase_01 AC 134 ms
41,448 KB
testcase_02 AC 136 ms
41,344 KB
testcase_03 AC 131 ms
41,024 KB
testcase_04 AC 135 ms
41,420 KB
testcase_05 AC 131 ms
41,344 KB
testcase_06 AC 133 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

	public static void main (String[] args) {

		Scanner sc = new Scanner(System.in);
		
		BigInteger a = BigInteger.valueOf(sc.nextInt());
		BigInteger b = BigInteger.valueOf(sc.nextInt());
		BigInteger c = BigInteger.valueOf(sc.nextInt());
		BigInteger d = BigInteger.valueOf(sc.nextInt());
		
		System.out.println(a.multiply(b).multiply(c).remainder(d));

		sc.close();

	}

}
0