結果

問題 No.373 かけ算と割った余り
ユーザー tentententen
提出日時 2020-09-30 08:23:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 3,055 ms
コンパイル使用メモリ 73,500 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-07-05 08:03:57
合計ジャッジ時間 4,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,436 KB
testcase_01 AC 126 ms
41,168 KB
testcase_02 AC 126 ms
41,220 KB
testcase_03 AC 110 ms
40,064 KB
testcase_04 AC 125 ms
40,936 KB
testcase_05 AC 123 ms
41,148 KB
testcase_06 AC 125 ms
40,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long a = sc.nextInt();
        long b = sc.nextInt();
        long c = sc.nextInt();
        long d = sc.nextInt();
        a %= d;
        a *= b;
        a %= d;
        a *= c;
        a %= d;
        System.out.println(a);
    }
}
0