結果

問題 No.666 1000000007で割るだけ
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-17 23:05:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 1,982 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 41,296 KB
最終ジャッジ日時 2024-06-28 13:36:35
合計ジャッジ時間 5,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,840 KB
testcase_01 AC 129 ms
40,980 KB
testcase_02 AC 115 ms
40,296 KB
testcase_03 AC 129 ms
40,848 KB
testcase_04 AC 119 ms
40,136 KB
testcase_05 AC 127 ms
41,296 KB
testcase_06 AC 130 ms
41,272 KB
testcase_07 AC 129 ms
41,196 KB
testcase_08 AC 134 ms
41,216 KB
testcase_09 AC 129 ms
41,212 KB
testcase_10 AC 127 ms
41,008 KB
testcase_11 AC 129 ms
40,976 KB
testcase_12 AC 130 ms
40,716 KB
testcase_13 AC 131 ms
40,768 KB
testcase_14 AC 131 ms
41,248 KB
testcase_15 AC 130 ms
40,648 KB
testcase_16 AC 114 ms
39,936 KB
testcase_17 AC 124 ms
40,704 KB
testcase_18 AC 126 ms
41,280 KB
testcase_19 AC 118 ms
40,364 KB
testcase_20 AC 130 ms
40,816 KB
testcase_21 AC 130 ms
41,056 KB
testcase_22 AC 119 ms
39,796 KB
testcase_23 AC 130 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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