結果

問題 No.373 かけ算と割った余り
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-07 23:29:34
言語 Java
(openjdk 23)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 1,913 ms
コンパイル使用メモリ 75,356 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-12-25 15:34:22
合計ジャッジ時間 3,405 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,456 KB
testcase_01 AC 108 ms
40,216 KB
testcase_02 AC 124 ms
41,312 KB
testcase_03 AC 117 ms
40,776 KB
testcase_04 AC 119 ms
41,232 KB
testcase_05 AC 121 ms
41,060 KB
testcase_06 AC 124 ms
41,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        long a = in.nextLong();
        long b = in.nextLong();
        long c = in.nextLong();
        long d = in.nextLong();

        System.out.println((a*b)%d*c%d);

        in.close();
    }
}
0