結果

問題 No.373 かけ算と割った余り
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 22:59:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 2,758 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-07-07 19:16:07
合計ジャッジ時間 4,119 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,120 KB
testcase_01 AC 100 ms
40,256 KB
testcase_02 AC 102 ms
40,100 KB
testcase_03 AC 114 ms
41,192 KB
testcase_04 AC 98 ms
39,948 KB
testcase_05 AC 100 ms
39,884 KB
testcase_06 AC 108 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Kakeamari {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		long A = s.nextLong(),B = s.nextLong(),C = s.nextLong(),D = s.nextLong();
		s.close();
		long ab = ((A%D)*(B%D))%D;
		System.out.println((ab*(C%D))%D);

	}

}
0