結果

問題 No.666 1000000007で割るだけ
ユーザー tentententen
提出日時 2020-11-12 09:24:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 41,280 KB
最終ジャッジ日時 2024-07-22 19:04:34
合計ジャッジ時間 5,053 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,792 KB
testcase_01 AC 102 ms
41,032 KB
testcase_02 AC 102 ms
41,060 KB
testcase_03 AC 103 ms
41,092 KB
testcase_04 AC 103 ms
40,956 KB
testcase_05 AC 104 ms
41,128 KB
testcase_06 AC 101 ms
40,168 KB
testcase_07 AC 113 ms
41,000 KB
testcase_08 AC 103 ms
40,988 KB
testcase_09 AC 105 ms
41,280 KB
testcase_10 AC 104 ms
40,952 KB
testcase_11 AC 105 ms
40,968 KB
testcase_12 AC 105 ms
40,816 KB
testcase_13 AC 103 ms
40,948 KB
testcase_14 AC 95 ms
40,152 KB
testcase_15 AC 106 ms
40,924 KB
testcase_16 AC 98 ms
40,048 KB
testcase_17 AC 106 ms
41,080 KB
testcase_18 AC 106 ms
41,188 KB
testcase_19 AC 108 ms
41,068 KB
testcase_20 AC 99 ms
40,140 KB
testcase_21 AC 104 ms
41,200 KB
testcase_22 AC 103 ms
40,904 KB
testcase_23 AC 92 ms
40,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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