結果
問題 | No.373 かけ算と割った余り |
ユーザー | nCk_cv |
提出日時 | 2016-07-01 18:27:16 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 363 bytes |
コンパイル時間 | 1,976 ms |
コンパイル使用メモリ | 74,400 KB |
実行使用メモリ | 41,504 KB |
最終ジャッジ日時 | 2024-10-12 00:03:08 |
合計ジャッジ時間 | 3,448 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
41,340 KB |
testcase_01 | AC | 126 ms
41,420 KB |
testcase_02 | AC | 128 ms
41,424 KB |
testcase_03 | AC | 129 ms
41,504 KB |
testcase_04 | AC | 129 ms
41,256 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
import java.io.*; import java.math.*; import java.util.*; public class Main { static int[] vy = {1,0,-1,0}; static int[] vx = {0,1,0,-1}; public static void main(String[] args) { Scanner sc = new Scanner(System.in); PrintWriter out = new PrintWriter(System.out); System.out.println(sc.nextLong() * sc.nextLong() * sc.nextLong() % sc.nextLong()); } }