結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,112 KB
testcase_01 AC 113 ms
39,948 KB
testcase_02 AC 125 ms
41,436 KB
testcase_03 WA -
testcase_04 AC 128 ms
41,384 KB
testcase_05 AC 124 ms
41,072 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 124 ms
41,488 KB
testcase_10 WA -
testcase_11 AC 126 ms
41,228 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 120 ms
41,216 KB
testcase_16 WA -
testcase_17 AC 125 ms
41,268 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 128 ms
41,376 KB
testcase_22 AC 126 ms
41,020 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