結果

問題 No.373 かけ算と割った余り
ユーザー 37zigen37zigen
提出日時 2016-06-04 23:04:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 2,419 ms
コンパイル使用メモリ 74,900 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-10-09 05:01:43
合計ジャッジ時間 3,991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,108 KB
testcase_01 AC 135 ms
40,736 KB
testcase_02 AC 130 ms
41,176 KB
testcase_03 AC 129 ms
41,008 KB
testcase_04 AC 129 ms
40,576 KB
testcase_05 AC 130 ms
41,304 KB
testcase_06 AC 130 ms
40,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		long a,b,c,d;
		a=sc.nextLong();b=sc.nextLong();c=sc.nextLong();d=sc.nextLong();
		long ans=1;
		ans=a%d;
		ans=ans*b%d;
		ans=ans*c%d;
		System.out.println(ans);
	}
}
0