結果

問題 No.666 1000000007で割るだけ
ユーザー watarimaycry2watarimaycry2
提出日時 2020-04-10 16:27:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 74,000 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-09-15 04:36:19
合計ジャッジ時間 6,021 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,096 KB
testcase_01 AC 122 ms
41,184 KB
testcase_02 AC 128 ms
40,984 KB
testcase_03 AC 127 ms
40,820 KB
testcase_04 AC 124 ms
40,732 KB
testcase_05 AC 124 ms
40,996 KB
testcase_06 AC 128 ms
41,208 KB
testcase_07 AC 125 ms
41,140 KB
testcase_08 AC 120 ms
40,692 KB
testcase_09 AC 125 ms
40,988 KB
testcase_10 AC 125 ms
41,312 KB
testcase_11 AC 110 ms
40,020 KB
testcase_12 AC 124 ms
41,000 KB
testcase_13 AC 121 ms
41,196 KB
testcase_14 AC 130 ms
41,120 KB
testcase_15 AC 130 ms
41,196 KB
testcase_16 AC 123 ms
41,216 KB
testcase_17 AC 123 ms
40,968 KB
testcase_18 AC 120 ms
40,856 KB
testcase_19 AC 122 ms
41,540 KB
testcase_20 AC 122 ms
40,840 KB
testcase_21 AC 123 ms
40,848 KB
testcase_22 AC 127 ms
41,408 KB
testcase_23 AC 124 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
        static Scanner sc = new Scanner(System.in);
        static void myout(Object t){System.out.println(t);}//standard output
        static void myerr(Object t){System.err.println(t);}//standard error
        static String getStr(){return sc.next();}
        static int getInt(){return Integer.parseInt(getStr());}
        static long getLong(){return Long.parseLong(getStr());}
        static boolean hasNext(){return sc.hasNext();}
        static char[] mySplit(String str){return str.toCharArray();}
        public static void main(String[] args){
          long A = getLong();
          long B = getLong();
          final int mod = 1000000007;
          myout(A * B % mod);
        }
        //Method addition frame start

        //Method addition frame end
}
0