結果
問題 | No.373 かけ算と割った余り |
ユーザー | atkrym |
提出日時 | 2016-11-07 21:48:43 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 132 ms / 2,000 ms |
コード長 | 591 bytes |
コンパイル時間 | 2,395 ms |
コンパイル使用メモリ | 74,120 KB |
実行使用メモリ | 41,492 KB |
最終ジャッジ日時 | 2024-05-03 23:01:56 |
合計ジャッジ時間 | 3,906 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
41,180 KB |
testcase_01 | AC | 129 ms
41,156 KB |
testcase_02 | AC | 130 ms
41,352 KB |
testcase_03 | AC | 129 ms
41,240 KB |
testcase_04 | AC | 129 ms
41,328 KB |
testcase_05 | AC | 117 ms
40,064 KB |
testcase_06 | AC | 132 ms
41,492 KB |
ソースコード
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); } }