結果
問題 | No.373 かけ算と割った余り |
ユーザー | TatsuDX |
提出日時 | 2016-09-03 14:39:47 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 128 ms / 2,000 ms |
コード長 | 334 bytes |
コンパイル時間 | 3,818 ms |
コンパイル使用メモリ | 77,172 KB |
実行使用メモリ | 41,616 KB |
最終ジャッジ日時 | 2024-11-15 18:39:10 |
合計ジャッジ時間 | 5,556 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
41,348 KB |
testcase_01 | AC | 125 ms
41,616 KB |
testcase_02 | AC | 121 ms
41,364 KB |
testcase_03 | AC | 118 ms
40,864 KB |
testcase_04 | AC | 114 ms
40,284 KB |
testcase_05 | AC | 128 ms
41,088 KB |
testcase_06 | AC | 125 ms
41,384 KB |
ソースコード
import java.util.Scanner; public class Test { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long a, b, c, d, e; a = sc.nextLong(); b = sc.nextLong(); c = sc.nextLong(); d = sc.nextLong(); a %= d; b %= d; c %= d; a *= b; a %= d; a *= c; a %= d; System.out.println(a); } }