結果

問題 No.373 かけ算と割った余り
ユーザー Mcpu3Mcpu3
提出日時 2018-07-11 19:59:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 3,553 ms
コンパイル使用メモリ 73,488 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-09-21 18:55:58
合計ジャッジ時間 5,113 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,172 KB
testcase_01 AC 138 ms
54,128 KB
testcase_02 AC 136 ms
54,204 KB
testcase_03 AC 133 ms
54,076 KB
testcase_04 AC 135 ms
53,728 KB
testcase_05 AC 136 ms
53,976 KB
testcase_06 AC 136 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no373{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		long a=stdIn.nextLong(),b=stdIn.nextLong(),c=stdIn.nextLong(),d=stdIn.nextLong();
		System.out.print((a*b)%d*c%d);
	}
}
0