結果

問題 No.666 1000000007で割るだけ
ユーザー saran1591saran1591
提出日時 2018-06-27 12:17:11
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 3,430 ms
コンパイル使用メモリ 94,824 KB
実行使用メモリ 15,900 KB
最終ジャッジ日時 2023-09-13 14:26:57
合計ジャッジ時間 5,850 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
15,740 KB
testcase_01 AC 58 ms
15,744 KB
testcase_02 AC 58 ms
15,820 KB
testcase_03 AC 58 ms
15,744 KB
testcase_04 AC 57 ms
15,732 KB
testcase_05 AC 58 ms
15,788 KB
testcase_06 AC 58 ms
15,684 KB
testcase_07 AC 57 ms
15,848 KB
testcase_08 AC 57 ms
15,900 KB
testcase_09 AC 58 ms
15,732 KB
testcase_10 AC 57 ms
15,800 KB
testcase_11 AC 57 ms
15,696 KB
testcase_12 AC 59 ms
15,740 KB
testcase_13 AC 61 ms
15,740 KB
testcase_14 AC 58 ms
15,692 KB
testcase_15 AC 58 ms
15,844 KB
testcase_16 AC 58 ms
15,732 KB
testcase_17 AC 58 ms
15,828 KB
testcase_18 AC 58 ms
15,744 KB
testcase_19 AC 58 ms
15,724 KB
testcase_20 AC 58 ms
15,744 KB
testcase_21 AC 59 ms
15,728 KB
testcase_22 AC 58 ms
15,792 KB
testcase_23 AC 58 ms
15,756 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using static System.Console;
namespace App
{
    class Prog
    {
        static void Main()
        {
            var x = ReadLine().Split().Select(long.Parse).ToArray();
            int mod = 1000000007;
            WriteLine((x[0] % mod * x[1] % mod) % mod);
        }
    }
}
0