結果
問題 | No.373 かけ算と割った余り |
ユーザー | nullzine |
提出日時 | 2017-01-19 21:24:02 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 116 ms / 2,000 ms |
コード長 | 391 bytes |
コンパイル時間 | 3,249 ms |
コンパイル使用メモリ | 74,276 KB |
実行使用メモリ | 41,548 KB |
最終ジャッジ日時 | 2024-06-02 07:02:16 |
合計ジャッジ時間 | 3,159 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 116 ms
41,400 KB |
testcase_01 | AC | 115 ms
41,308 KB |
testcase_02 | AC | 105 ms
41,240 KB |
testcase_03 | AC | 113 ms
41,548 KB |
testcase_04 | AC | 101 ms
41,408 KB |
testcase_05 | AC | 116 ms
41,216 KB |
testcase_06 | AC | 102 ms
41,008 KB |
ソースコード
import java.math.BigInteger; /** * Created by nullzine on 2017/01/19. */ public class Main { public static void main(String[] args) { String[] strs = new java.util.Scanner(System.in).nextLine().split(" "); System.out.println(new BigInteger(strs[0]).multiply(new BigInteger(strs[1])).multiply(new BigInteger(strs[2])).mod(new BigInteger(strs[3])).toString()); } }