結果

問題 No.666 1000000007で割るだけ
ユーザー shinwisteriashinwisteria
提出日時 2019-01-21 18:33:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 3,379 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-09-15 13:13:56
合計ジャッジ時間 7,320 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,440 KB
testcase_01 AC 126 ms
41,184 KB
testcase_02 AC 117 ms
40,028 KB
testcase_03 AC 118 ms
40,192 KB
testcase_04 AC 127 ms
41,352 KB
testcase_05 AC 127 ms
41,176 KB
testcase_06 AC 128 ms
41,240 KB
testcase_07 AC 129 ms
41,104 KB
testcase_08 AC 126 ms
41,404 KB
testcase_09 AC 116 ms
39,916 KB
testcase_10 AC 129 ms
41,172 KB
testcase_11 AC 126 ms
41,068 KB
testcase_12 AC 125 ms
41,144 KB
testcase_13 AC 128 ms
41,052 KB
testcase_14 AC 125 ms
41,128 KB
testcase_15 AC 133 ms
41,132 KB
testcase_16 AC 130 ms
41,024 KB
testcase_17 AC 127 ms
41,180 KB
testcase_18 AC 126 ms
41,080 KB
testcase_19 AC 113 ms
40,096 KB
testcase_20 AC 126 ms
41,172 KB
testcase_21 AC 127 ms
41,152 KB
testcase_22 AC 115 ms
40,188 KB
testcase_23 AC 129 ms
41,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No666 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		long A = s.nextLong(),B = s.nextLong();
		s.close();
		System.out.println(A * B % 1000000007);
	}

}
0