結果
問題 |
No.500 階乗電卓
|
ユーザー |
![]() |
提出日時 | 2017-08-18 13:36:29 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 837 bytes |
コンパイル時間 | 843 ms |
コンパイル使用メモリ | 110,604 KB |
実行使用メモリ | 27,908 KB |
最終ジャッジ日時 | 2024-10-14 14:52:29 |
合計ジャッジ時間 | 2,344 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 18 WA * 2 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace FactCalc { class Program { static void Main(string[] args) { ulong n = ulong.Parse(Console.ReadLine()); ulong f = Ncalc(n); Console.WriteLine( Formater(f) ); } private static string Formater(ulong f) { string s = f.ToString("#"); if (s.Length > 12) { s = s.Substring(s.Length - 12, 12); } return s; } private static ulong Ncalc(ulong n) { if( n < 50 ) { for (ulong i = n - 1; i > 1; i--) { n *= i; } } else { n = 1000000000000; } return n; } } }