結果

問題 No.666 1000000007で割るだけ
ユーザー sekiya9311sekiya9311
提出日時 2018-03-23 22:45:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 746 bytes
コンパイル時間 5,957 ms
コンパイル使用メモリ 71,480 KB
実行使用メモリ 56,468 KB
最終ジャッジ日時 2023-09-07 03:19:46
合計ジャッジ時間 6,979 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
56,052 KB
testcase_01 AC 125 ms
55,672 KB
testcase_02 AC 125 ms
55,960 KB
testcase_03 WA -
testcase_04 AC 126 ms
56,140 KB
testcase_05 AC 128 ms
55,732 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 125 ms
56,004 KB
testcase_10 WA -
testcase_11 AC 126 ms
56,040 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 124 ms
55,672 KB
testcase_16 WA -
testcase_17 AC 125 ms
56,148 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 125 ms
55,696 KB
testcase_22 AC 124 ms
55,860 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
        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