結果
問題 | No.666 1000000007で割るだけ |
ユーザー | kusagame12 |
提出日時 | 2024-06-12 15:14:56 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 323 bytes |
コンパイル時間 | 3,364 ms |
コンパイル使用メモリ | 74,084 KB |
実行使用メモリ | 57,716 KB |
最終ジャッジ日時 | 2024-06-12 15:15:05 |
合計ジャッジ時間 | 8,252 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 123 ms
53,976 KB |
testcase_01 | AC | 123 ms
53,720 KB |
testcase_02 | AC | 121 ms
53,892 KB |
testcase_03 | WA | - |
testcase_04 | AC | 125 ms
53,680 KB |
testcase_05 | AC | 125 ms
53,816 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 123 ms
53,784 KB |
testcase_10 | WA | - |
testcase_11 | AC | 134 ms
53,940 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 130 ms
54,012 KB |
testcase_16 | WA | - |
testcase_17 | AC | 133 ms
53,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 113 ms
53,296 KB |
testcase_22 | AC | 117 ms
53,668 KB |
testcase_23 | WA | - |
ソースコード
import java.util.*; import java.lang.*; import java.io.*; // The main method must be in a class named "Main". class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println(((sc.nextInt() % 1000000007) * (sc.nextInt() % 1000000007)) % 1000000007); } }