結果
問題 | No.373 かけ算と割った余り |
ユーザー | sasuke |
提出日時 | 2016-06-16 21:40:12 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 256 bytes |
コンパイル時間 | 3,422 ms |
コンパイル使用メモリ | 74,100 KB |
実行使用メモリ | 54,156 KB |
最終ジャッジ日時 | 2024-10-09 16:36:52 |
合計ジャッジ時間 | 4,897 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
54,156 KB |
testcase_01 | AC | 138 ms
53,932 KB |
testcase_02 | AC | 138 ms
53,936 KB |
testcase_03 | AC | 140 ms
54,024 KB |
testcase_04 | AC | 133 ms
53,932 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
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); } }