結果

問題 No.666 1000000007で割るだけ
ユーザー htensaihtensai
提出日時 2019-11-13 08:32:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 1,876 ms
コンパイル使用メモリ 73,700 KB
実行使用メモリ 41,136 KB
最終ジャッジ日時 2024-09-21 21:01:48
合計ジャッジ時間 5,735 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,036 KB
testcase_01 AC 120 ms
40,988 KB
testcase_02 AC 122 ms
40,832 KB
testcase_03 AC 116 ms
40,112 KB
testcase_04 AC 107 ms
39,644 KB
testcase_05 AC 121 ms
41,136 KB
testcase_06 AC 119 ms
40,992 KB
testcase_07 AC 124 ms
40,808 KB
testcase_08 AC 116 ms
39,892 KB
testcase_09 AC 123 ms
40,944 KB
testcase_10 AC 117 ms
40,072 KB
testcase_11 AC 125 ms
40,976 KB
testcase_12 AC 121 ms
41,068 KB
testcase_13 AC 122 ms
41,132 KB
testcase_14 AC 119 ms
40,112 KB
testcase_15 AC 120 ms
41,060 KB
testcase_16 AC 115 ms
40,944 KB
testcase_17 AC 117 ms
39,708 KB
testcase_18 AC 122 ms
40,980 KB
testcase_19 AC 117 ms
40,688 KB
testcase_20 AC 105 ms
39,860 KB
testcase_21 AC 117 ms
40,180 KB
testcase_22 AC 108 ms
39,908 KB
testcase_23 AC 120 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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