結果

問題 No.8045 怪文書
ユーザー bluemeganebluemegane
提出日時 2019-04-02 14:04:11
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 363 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 107,412 KB
実行使用メモリ 46,324 KB
最終ジャッジ日時 2024-11-29 18:31:27
合計ジャッジ時間 25,014 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
46,324 KB
testcase_01 AC 25 ms
30,720 KB
testcase_02 AC 25 ms
31,040 KB
testcase_03 AC 26 ms
33,068 KB
testcase_04 AC 26 ms
33,056 KB
testcase_05 AC 25 ms
46,316 KB
testcase_06 AC 25 ms
33,024 KB
testcase_07 AC 27 ms
30,720 KB
testcase_08 AC 26 ms
32,800 KB
testcase_09 AC 26 ms
32,940 KB
testcase_10 AC 25 ms
30,768 KB
testcase_11 AC 27 ms
23,820 KB
testcase_12 AC 27 ms
23,852 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 776 ms
22,064 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        var ans = 1L;
        for (int i = 1; i <= n; i++)
        {
            ans *= i;
            ans %= m;
        }
        Console.WriteLine(ans);
    }
}

0