結果

問題 No.666 1000000007で割るだけ
ユーザー yamax3232yamax3232
提出日時 2018-04-13 22:20:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 3,588 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 56,308 KB
最終ジャッジ日時 2024-06-26 21:42:54
合計ジャッジ時間 7,460 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,048 KB
testcase_01 AC 129 ms
53,980 KB
testcase_02 AC 117 ms
52,960 KB
testcase_03 WA -
testcase_04 AC 127 ms
54,120 KB
testcase_05 AC 128 ms
54,168 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 130 ms
54,260 KB
testcase_10 WA -
testcase_11 AC 118 ms
53,028 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 129 ms
53,868 KB
testcase_16 WA -
testcase_17 AC 126 ms
53,980 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 130 ms
54,092 KB
testcase_22 AC 128 ms
54,228 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main3 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb =new Scanner(System.in);
		int a=kb.nextInt();
		int b=kb.nextInt();
		System.out.println((a*b)%1000000007);
	}

}
0