結果
問題 | No.1713 trick or treat! |
ユーザー | mobchan |
提出日時 | 2023-04-23 20:41:12 |
言語 | C# (.NET 8.0.203) |
結果 |
MLE
|
実行時間 | - |
コード長 | 393 bytes |
コンパイル時間 | 13,389 ms |
コンパイル使用メモリ | 167,172 KB |
実行使用メモリ | 990,600 KB |
最終ジャッジ日時 | 2024-11-08 02:32:00 |
合計ジャッジ時間 | 15,707 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
30,080 KB |
testcase_01 | AC | 56 ms
29,952 KB |
testcase_02 | MLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (106 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; using System.Linq; class Program { static void Main(string[] args) { var input = Console.ReadLine().Split().Select(int.Parse).ToArray(); var temp = input[0] | Kaijou(input[1]); var ans = Kaijou(temp); Console.WriteLine(ans); } static int Kaijou(int n) { if (n == 1) return 1; return n * Kaijou(n - 1); } }