結果

問題 No.373 かけ算と割った余り
ユーザー atkrymatkrym
提出日時 2016-11-07 21:35:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 446 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 41,772 KB
最終ジャッジ日時 2024-05-03 23:01:46
合計ジャッジ時間 3,293 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,360 KB
testcase_01 AC 117 ms
41,224 KB
testcase_02 AC 109 ms
41,616 KB
testcase_03 AC 100 ms
41,568 KB
testcase_04 AC 114 ms
41,052 KB
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();
        int d = sc.nextInt();
        int ret = mod(mod(a,d)*mod(b,d)*mod(c,d),d);
        System.out.println(ret);
    }
    
    public static int mod(int a, int b) {
        return a%b;
    }
}
0