結果

問題 No.500 階乗電卓
ユーザー mbanmban
提出日時 2017-04-10 22:55:07
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 917 bytes
コンパイル時間 3,206 ms
コンパイル使用メモリ 106,900 KB
実行使用メモリ 22,936 KB
最終ジャッジ日時 2023-09-07 08:38:36
合計ジャッジ時間 5,571 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
22,724 KB
testcase_01 AC 47 ms
22,764 KB
testcase_02 AC 47 ms
22,936 KB
testcase_03 AC 47 ms
20,796 KB
testcase_04 AC 48 ms
18,784 KB
testcase_05 AC 48 ms
20,588 KB
testcase_06 AC 49 ms
20,712 KB
testcase_07 AC 48 ms
22,872 KB
testcase_08 AC 46 ms
20,692 KB
testcase_09 AC 46 ms
22,712 KB
testcase_10 AC 45 ms
18,756 KB
testcase_11 AC 47 ms
22,748 KB
testcase_12 AC 49 ms
20,716 KB
testcase_13 AC 49 ms
20,752 KB
testcase_14 AC 48 ms
20,772 KB
testcase_15 AC 48 ms
20,720 KB
testcase_16 AC 48 ms
20,688 KB
testcase_17 AC 48 ms
20,652 KB
testcase_18 AC 49 ms
20,696 KB
testcase_19 AC 46 ms
20,704 KB
testcase_20 AC 48 ms
22,828 KB
testcase_21 AC 47 ms
20,788 KB
testcase_22 AC 48 ms
20,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        new Magatro().Solve();
    }
}

public class Magatro
{
    private long N = long.Parse(Console.ReadLine());
    long Mod = 1000000000000;
    public void Solve()
    {
        if (N > 100)
        {
            Console.WriteLine(string.Format(new string('0', 12)));
        }
        else
        {
            long ans = 1;
            bool flag = false;
            for(long i = 1; i <= N; i++)
            {
                ans *= i;
                if (ans >= Mod)
                {
                    flag = true;
                }
                ans %= Mod;
            }
            if (flag)
            {
                Console.WriteLine("{0:D12}", ans);
            }
            else
            {
                Console.WriteLine(ans);
            }
        }
    }
}
0