結果

問題 No.373 かけ算と割った余り
ユーザー nullzinenullzine
提出日時 2017-01-19 21:21:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 1,837 ms
コンパイル使用メモリ 73,880 KB
実行使用メモリ 53,852 KB
最終ジャッジ日時 2024-06-02 07:02:08
合計ジャッジ時間 3,233 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

public class Main {

    public static void main(String[] args) {
        String[] strs = new java.util.Scanner(System.in).nextLine().split(" ");
        System.out.println(Integer.parseInt(strs[0])*Integer.parseInt(strs[1])*Integer.parseInt(strs[2])%Integer.parseInt(strs[3]));
    }

}
0