結果
問題 | No.1713 trick or treat! |
ユーザー | mobchan |
提出日時 | 2023-04-23 15:26:51 |
言語 | C# (.NET 8.0.203) |
結果 |
MLE
|
実行時間 | - |
コード長 | 368 bytes |
コンパイル時間 | 10,290 ms |
コンパイル使用メモリ | 167,552 KB |
実行使用メモリ | 845,696 KB |
最終ジャッジ日時 | 2024-11-07 22:45:37 |
合計ジャッジ時間 | 15,832 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
30,464 KB |
testcase_01 | AC | 57 ms
30,064 KB |
testcase_02 | MLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (96 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 ans = Kaijou(input[0] | Kaijou(input[1])); Console.WriteLine(ans); } static int Kaijou(int n) { if (n == 1) return 1; return n * Kaijou(n - 1); } }