結果

問題 No.666 1000000007で割るだけ
ユーザー yamax3232yamax3232
提出日時 2018-04-13 22:20:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 3,591 ms
コンパイル使用メモリ 71,952 KB
実行使用メモリ 58,288 KB
最終ジャッジ日時 2023-09-09 04:35:49
合計ジャッジ時間 7,424 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
55,468 KB
testcase_01 AC 125 ms
55,828 KB
testcase_02 AC 124 ms
55,748 KB
testcase_03 WA -
testcase_04 AC 123 ms
55,756 KB
testcase_05 AC 123 ms
55,656 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 124 ms
55,852 KB
testcase_10 WA -
testcase_11 AC 124 ms
55,976 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 126 ms
56,024 KB
testcase_16 WA -
testcase_17 AC 126 ms
55,744 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 124 ms
56,352 KB
testcase_22 AC 126 ms
55,776 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