結果
| 問題 | No.373 かけ算と割った余り |
| コンテスト | |
| ユーザー |
atkrym
|
| 提出日時 | 2016-11-07 21:48:43 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
AC
|
| 実行時間 | 57 ms / 2,000 ms |
| コード長 | 591 bytes |
| 記録 | |
| コンパイル時間 | 1,763 ms |
| コンパイル使用メモリ | 83,956 KB |
| 実行使用メモリ | 41,600 KB |
| 最終ジャッジ日時 | 2026-05-19 13:07:51 |
| 合計ジャッジ時間 | 3,054 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 5 |
ソースコード
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);
}
}
atkrym