結果

問題 No.666 1000000007で割るだけ
ユーザー kusagame12kusagame12
提出日時 2024-06-12 15:20:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 73,456 KB
実行使用メモリ 54,048 KB
最終ジャッジ日時 2024-06-12 15:20:39
合計ジャッジ時間 5,622 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
53,936 KB
testcase_01 AC 118 ms
54,028 KB
testcase_02 AC 121 ms
53,980 KB
testcase_03 AC 120 ms
53,684 KB
testcase_04 AC 123 ms
53,804 KB
testcase_05 AC 120 ms
53,764 KB
testcase_06 AC 124 ms
53,668 KB
testcase_07 AC 109 ms
52,972 KB
testcase_08 AC 104 ms
52,288 KB
testcase_09 AC 124 ms
52,784 KB
testcase_10 AC 128 ms
53,616 KB
testcase_11 AC 132 ms
53,792 KB
testcase_12 AC 118 ms
53,884 KB
testcase_13 AC 108 ms
52,636 KB
testcase_14 AC 116 ms
54,048 KB
testcase_15 AC 99 ms
52,188 KB
testcase_16 AC 119 ms
53,964 KB
testcase_17 AC 121 ms
53,900 KB
testcase_18 AC 120 ms
53,872 KB
testcase_19 AC 132 ms
53,656 KB
testcase_20 AC 121 ms
52,416 KB
testcase_21 AC 120 ms
53,564 KB
testcase_22 AC 108 ms
53,016 KB
testcase_23 AC 124 ms
53,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println(((long)(sc.nextInt() % 1000000007) * (sc.nextInt() % 1000000007)) % 1000000007);
    }
}
0