結果

問題 No.373 かけ算と割った余り
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-10-30 23:39:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 54,076 KB
最終ジャッジ日時 2024-11-24 23:53:06
合計ジャッジ時間 3,256 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,848 KB
testcase_01 AC 110 ms
53,504 KB
testcase_02 AC 111 ms
54,076 KB
testcase_03 AC 103 ms
53,132 KB
testcase_04 AC 113 ms
53,012 KB
testcase_05 AC 113 ms
52,984 KB
testcase_06 AC 113 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	
    	BigInteger biA = new BigInteger(sc.next());
    	BigInteger biB = new BigInteger(sc.next());
    	BigInteger biC = new BigInteger(sc.next());
    	BigInteger biD = new BigInteger(sc.next());
    	BigInteger biAns = new BigInteger("0");
    	
    	biAns = biAns.add(biA);
    	biAns = biAns.multiply(biB);
    	biAns = biAns.multiply(biC);
    	biAns = biAns.remainder(biD);
    	
    	System.out.println(biAns);
    }
}
0