結果

問題 No.666 1000000007で割るだけ
ユーザー yamax3232yamax3232
提出日時 2018-04-13 22:19:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 273 bytes
コンパイル時間 4,834 ms
コンパイル使用メモリ 71,404 KB
実行使用メモリ 57,820 KB
最終ジャッジ日時 2023-09-09 04:35:37
合計ジャッジ時間 8,987 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
55,772 KB
testcase_01 AC 127 ms
55,392 KB
testcase_02 AC 127 ms
55,532 KB
testcase_03 WA -
testcase_04 AC 125 ms
55,584 KB
testcase_05 AC 125 ms
55,392 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 126 ms
55,404 KB
testcase_10 WA -
testcase_11 AC 123 ms
55,992 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 123 ms
55,708 KB
testcase_16 WA -
testcase_17 AC 125 ms
55,696 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 127 ms
55,896 KB
testcase_22 AC 126 ms
55,600 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