結果

問題 No.666 1000000007で割るだけ
コンテスト
ユーザー sekiya9311
提出日時 2018-03-23 22:45:19
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
WA  
実行時間 -
コード長 746 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,675 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 46,784 KB
最終ジャッジ日時 2026-03-11 02:10:05
合計ジャッジ時間 3,843 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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);
        No666 solver = new No666();
        solver.solve(1, in, out);
        out.close();
    }

    static class No666 {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            out.println(in.nextLong() * in.nextLong());
        }

    }
}

0