結果

問題 No.373 かけ算と割った余り
ユーザー atkrym
提出日時 2016-11-07 21:48:43
言語 Java
(openjdk 23)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 2,036 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-11-25 04:30:45
合計ジャッジ時間 3,406 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        BigInteger a = new BigInteger(sc.next());
        BigInteger b = new BigInteger(sc.next());
        BigInteger c = new BigInteger(sc.next());
        BigInteger d = new BigInteger(sc.next());
        BigInteger ret = mod(mod(mod(a,d).multiply(b),d).multiply(c),d);
        System.out.println(ret);
    }
    
    public static BigInteger mod(BigInteger a,BigInteger b) {
        return a.mod(b);
    }
}
0