結果

問題 No.666 1000000007で割るだけ
ユーザー Lo_OT
提出日時 2018-03-23 23:50:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 839 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-06-24 23:12:19
合計ジャッジ時間 6,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Yukicoder solver = new Yukicoder();
        solver.solve(1, in, out);
        out.close();
    }

    static class Yukicoder {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            long a = in.nextLong(), b = in.nextLong();
            long MODULO = 1000000007L;
            out.println((a * b) % MODULO);
        }

    }
}

0