結果

問題 No.373 かけ算と割った余り
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-07 23:26:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 401 bytes
コンパイル時間 2,586 ms
コンパイル使用メモリ 78,328 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-06-07 12:12:24
合計ジャッジ時間 3,730 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,856 KB
testcase_01 AC 128 ms
41,340 KB
testcase_02 AC 129 ms
40,872 KB
testcase_03 AC 128 ms
40,984 KB
testcase_04 AC 138 ms
41,092 KB
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
        int a = in.nextInt();
        int b = in.nextInt();
        int c = in.nextInt();
        int d = in.nextInt();

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

        in.close();
    }
}
0