結果

問題 No.373 かけ算と割った余り
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-07 23:29:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 1,848 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 41,364 KB
最終ジャッジ日時 2024-06-07 12:14:53
合計ジャッジ時間 3,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
39,736 KB
testcase_01 AC 122 ms
41,132 KB
testcase_02 AC 119 ms
41,280 KB
testcase_03 AC 115 ms
41,152 KB
testcase_04 AC 103 ms
40,168 KB
testcase_05 AC 100 ms
40,332 KB
testcase_06 AC 116 ms
41,364 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