結果

問題 No.666 1000000007で割るだけ
ユーザー GodNegotoGodNegoto
提出日時 2019-11-27 15:26:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 3,518 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-11-08 09:44:08
合計ジャッジ時間 7,883 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,288 KB
testcase_01 AC 139 ms
41,208 KB
testcase_02 AC 130 ms
40,232 KB
testcase_03 AC 137 ms
41,336 KB
testcase_04 AC 136 ms
41,296 KB
testcase_05 AC 132 ms
41,460 KB
testcase_06 AC 133 ms
41,148 KB
testcase_07 AC 134 ms
41,088 KB
testcase_08 AC 135 ms
41,092 KB
testcase_09 AC 132 ms
41,228 KB
testcase_10 AC 134 ms
41,308 KB
testcase_11 AC 137 ms
41,348 KB
testcase_12 AC 135 ms
41,112 KB
testcase_13 AC 123 ms
40,168 KB
testcase_14 AC 120 ms
39,796 KB
testcase_15 AC 135 ms
41,192 KB
testcase_16 AC 131 ms
41,324 KB
testcase_17 AC 132 ms
41,028 KB
testcase_18 AC 122 ms
40,064 KB
testcase_19 AC 134 ms
41,204 KB
testcase_20 AC 133 ms
41,092 KB
testcase_21 AC 134 ms
41,196 KB
testcase_22 AC 130 ms
41,044 KB
testcase_23 AC 130 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.ArrayList;
import java.util.Scanner;

import java.util.*;

public class sample7 {

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