結果

問題 No.373 かけ算と割った余り
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 03:07:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 1,926 ms
コンパイル使用メモリ 73,568 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-11-25 07:38:10
合計ジャッジ時間 3,428 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,880 KB
testcase_01 AC 131 ms
54,124 KB
testcase_02 AC 131 ms
53,916 KB
testcase_03 AC 132 ms
53,952 KB
testcase_04 AC 131 ms
54,096 KB
testcase_05 AC 118 ms
52,852 KB
testcase_06 AC 133 ms
53,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long A = sc.nextLong();
        long B = sc.nextLong();
        long C = sc.nextLong();
        long D = sc.nextLong();
        long r = (A*B%D )*C%D;
        System.out.println(r);
    }
}
0