結果

問題 No.666 1000000007で割るだけ
ユーザー isimiyaisimiya
提出日時 2018-05-23 22:41:08
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 768 ms
コンパイル使用メモリ 65,408 KB
実行使用メモリ 22,864 KB
最終ジャッジ日時 2023-09-11 02:00:20
合計ジャッジ時間 3,332 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
20,756 KB
testcase_01 AC 59 ms
22,800 KB
testcase_02 AC 59 ms
20,668 KB
testcase_03 AC 57 ms
20,676 KB
testcase_04 AC 58 ms
20,756 KB
testcase_05 AC 58 ms
22,716 KB
testcase_06 AC 58 ms
18,496 KB
testcase_07 AC 58 ms
20,712 KB
testcase_08 AC 58 ms
20,788 KB
testcase_09 AC 58 ms
20,728 KB
testcase_10 AC 58 ms
20,808 KB
testcase_11 AC 58 ms
20,548 KB
testcase_12 AC 57 ms
20,764 KB
testcase_13 AC 58 ms
20,668 KB
testcase_14 AC 58 ms
22,864 KB
testcase_15 AC 58 ms
20,740 KB
testcase_16 AC 58 ms
20,768 KB
testcase_17 AC 57 ms
20,736 KB
testcase_18 AC 57 ms
20,768 KB
testcase_19 AC 58 ms
22,676 KB
testcase_20 AC 58 ms
20,792 KB
testcase_21 AC 58 ms
20,736 KB
testcase_22 AC 58 ms
20,768 KB
testcase_23 AC 58 ms
20,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

public class class1 {
    public static void Main(){
			string stdin = Console.ReadLine();
			string[] t = stdin.Split(' ');
			long A = long.Parse(t[0]);
			long B = long.Parse(t[1]);
			Console.WriteLine((A * B) % 1000000007);

    }
}
0