結果

問題 No.373 かけ算と割った余り
ユーザー nullzinenullzine
提出日時 2017-01-19 21:21:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 2,615 ms
コンパイル使用メモリ 71,896 KB
実行使用メモリ 55,920 KB
最終ジャッジ日時 2023-08-24 17:16:22
合計ジャッジ時間 3,658 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
55,764 KB
testcase_01 AC 118 ms
55,920 KB
testcase_02 AC 118 ms
55,796 KB
testcase_03 AC 118 ms
55,772 KB
testcase_04 AC 119 ms
55,780 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