結果

問題 No.373 かけ算と割った余り
ユーザー tsunabittsunabit
提出日時 2019-06-02 11:51:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 2,783 ms
コンパイル使用メモリ 74,972 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-09-17 20:06:59
合計ジャッジ時間 4,279 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
53,452 KB
testcase_01 AC 113 ms
54,208 KB
testcase_02 AC 115 ms
54,048 KB
testcase_03 AC 116 ms
53,992 KB
testcase_04 AC 121 ms
54,040 KB
testcase_05 AC 120 ms
54,032 KB
testcase_06 AC 114 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No373 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        long a = s.nextLong();
        long b = s.nextLong();
        long c = s.nextLong();
        long d = s.nextLong();
        System.out.println((((a * b) % d) * c % d));
    }
}
0