結果

問題 No.666 1000000007で割るだけ
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 14:08:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 72,320 KB
実行使用メモリ 56,476 KB
最終ジャッジ日時 2023-10-11 11:10:47
合計ジャッジ時間 6,070 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
56,096 KB
testcase_01 AC 122 ms
56,016 KB
testcase_02 AC 122 ms
56,032 KB
testcase_03 AC 122 ms
56,204 KB
testcase_04 AC 120 ms
56,192 KB
testcase_05 AC 121 ms
56,476 KB
testcase_06 AC 121 ms
56,304 KB
testcase_07 AC 120 ms
56,364 KB
testcase_08 AC 121 ms
55,588 KB
testcase_09 AC 121 ms
56,216 KB
testcase_10 AC 121 ms
55,976 KB
testcase_11 AC 121 ms
56,224 KB
testcase_12 AC 120 ms
56,044 KB
testcase_13 AC 120 ms
56,176 KB
testcase_14 AC 120 ms
56,192 KB
testcase_15 AC 121 ms
56,012 KB
testcase_16 AC 120 ms
56,360 KB
testcase_17 AC 120 ms
56,144 KB
testcase_18 AC 120 ms
55,752 KB
testcase_19 AC 120 ms
56,084 KB
testcase_20 AC 120 ms
55,544 KB
testcase_21 AC 121 ms
56,024 KB
testcase_22 AC 122 ms
55,972 KB
testcase_23 AC 121 ms
56,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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