結果

問題 No.666 1000000007で割るだけ
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-05-09 01:38:21
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 102,968 KB
実行使用メモリ 24,932 KB
最終ジャッジ日時 2023-09-10 11:12:44
合計ジャッジ時間 4,350 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
20,756 KB
testcase_01 AC 56 ms
20,724 KB
testcase_02 AC 55 ms
20,832 KB
testcase_03 WA -
testcase_04 AC 56 ms
20,848 KB
testcase_05 AC 56 ms
20,708 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 56 ms
20,812 KB
testcase_10 WA -
testcase_11 AC 56 ms
22,760 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 56 ms
22,764 KB
testcase_16 WA -
testcase_17 AC 55 ms
20,652 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 56 ms
20,744 KB
testcase_22 AC 56 ms
22,840 KB
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class No666{
    static void Main(string[] args){
        var str=(Console.ReadLine()).Split(' ');
        var d=(Int32.Parse(str[0])*Int32.Parse(str[1]))%1000000007;
        Console.WriteLine(d);
    }
}
0