結果

問題 No.666 1000000007で割るだけ
ユーザー tsunabittsunabit
提出日時 2018-07-22 16:49:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 3,742 ms
コンパイル使用メモリ 76,224 KB
実行使用メモリ 54,500 KB
最終ジャッジ日時 2024-06-07 20:14:24
合計ジャッジ時間 7,689 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,904 KB
testcase_01 AC 137 ms
54,156 KB
testcase_02 AC 134 ms
54,176 KB
testcase_03 AC 131 ms
53,908 KB
testcase_04 AC 134 ms
53,892 KB
testcase_05 AC 134 ms
53,900 KB
testcase_06 AC 134 ms
53,804 KB
testcase_07 AC 132 ms
53,996 KB
testcase_08 AC 133 ms
54,104 KB
testcase_09 AC 137 ms
54,188 KB
testcase_10 AC 134 ms
54,044 KB
testcase_11 AC 134 ms
54,048 KB
testcase_12 AC 135 ms
54,392 KB
testcase_13 AC 136 ms
53,816 KB
testcase_14 AC 135 ms
54,140 KB
testcase_15 AC 132 ms
54,072 KB
testcase_16 AC 134 ms
53,984 KB
testcase_17 AC 129 ms
53,924 KB
testcase_18 AC 135 ms
54,000 KB
testcase_19 AC 134 ms
53,964 KB
testcase_20 AC 132 ms
53,752 KB
testcase_21 AC 135 ms
54,500 KB
testcase_22 AC 134 ms
54,096 KB
testcase_23 AC 132 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

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