結果

問題 No.666 1000000007で割るだけ
ユーザー shinwisteria
提出日時 2019-01-21 18:33:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 3,379 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-09-15 13:13:56
合計ジャッジ時間 7,320 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No666 {

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

}
0