結果

問題 No.373 かけ算と割った余り
ユーザー sasukesasuke
提出日時 2016-06-16 21:40:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 2,949 ms
コンパイル使用メモリ 75,700 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-04-17 22:54:32
合計ジャッジ時間 4,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,148 KB
testcase_01 AC 106 ms
53,016 KB
testcase_02 AC 117 ms
54,012 KB
testcase_03 AC 113 ms
54,288 KB
testcase_04 AC 117 ms
54,128 KB
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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