結果

問題 No.500 階乗電卓
ユーザー 14番14番
提出日時 2017-06-04 06:14:26
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,084 bytes
コンパイル時間 953 ms
コンパイル使用メモリ 114,328 KB
実行使用メモリ 26,136 KB
最終ジャッジ日時 2024-09-22 04:58:24
合計ジャッジ時間 2,286 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
21,812 KB
testcase_01 AC 25 ms
22,200 KB
testcase_02 AC 24 ms
24,088 KB
testcase_03 AC 24 ms
23,984 KB
testcase_04 AC 25 ms
24,112 KB
testcase_05 AC 25 ms
23,944 KB
testcase_06 AC 25 ms
24,204 KB
testcase_07 AC 25 ms
24,112 KB
testcase_08 AC 24 ms
23,952 KB
testcase_09 AC 25 ms
22,196 KB
testcase_10 AC 25 ms
26,136 KB
testcase_11 AC 24 ms
21,812 KB
testcase_12 AC 25 ms
24,072 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 24 ms
23,972 KB
testcase_16 AC 25 ms
23,856 KB
testcase_17 AC 24 ms
25,984 KB
testcase_18 AC 25 ms
24,332 KB
testcase_19 AC 24 ms
21,936 KB
testcase_20 AC 24 ms
23,700 KB
testcase_21 AC 25 ms
24,068 KB
testcase_22 AC 25 ms
23,952 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.IO;
using System.Linq;
using System.Collections.Generic;

public class Program
{

	public void Proc()
	{
        long inpt = long.Parse(Reader.ReadLine());
        long ans = 1;
        long mod = 1000000000000;
        for (int i = 1; i <= inpt; i++) {
            ans = ans * i;
            ans = ans % mod;
            if(ans == 0) {
                break;
            }
        }
        string strAns = ans.ToString("000000000000");
        if(inpt < 50) {
            strAns = ans.ToString();
        }
        Console.WriteLine(strAns);
    }

	public class Reader
	{
		private static StringReader sr;
		public static bool IsDebug = false;
		public static string ReadLine()
		{
			if (IsDebug)
			{
				if (sr == null)
				{
					sr = new StringReader(InputText.Trim());
				}
				return sr.ReadLine();
			}
			else
			{
				return Console.ReadLine();
			}
		}
		private static string InputText = @"



50


";
	}

	public static void Main(string[] args)
	{
#if DEBUG
		Reader.IsDebug = true;
#endif
		Program prg = new Program();
		prg.Proc();
	}
}
0