結果

問題 No.3045 怪文書
ユーザー bluemeganebluemegane
提出日時 2019-04-02 14:04:11
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 363 bytes
コンパイル時間 2,723 ms
コンパイル使用メモリ 109,836 KB
実行使用メモリ 30,636 KB
最終ジャッジ日時 2024-05-07 05:01:43
合計ジャッジ時間 7,570 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
30,636 KB
testcase_01 AC 25 ms
25,812 KB
testcase_02 AC 25 ms
26,324 KB
testcase_03 AC 25 ms
24,032 KB
testcase_04 AC 25 ms
24,028 KB
testcase_05 AC 25 ms
23,948 KB
testcase_06 AC 26 ms
23,904 KB
testcase_07 AC 28 ms
25,992 KB
testcase_08 AC 26 ms
23,984 KB
testcase_09 AC 25 ms
22,328 KB
testcase_10 AC 25 ms
23,944 KB
testcase_11 AC 27 ms
23,780 KB
testcase_12 AC 28 ms
24,344 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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