結果
問題 | No.2850 Make Slimes |
ユーザー | bluemegane |
提出日時 | 2024-08-28 07:09:00 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 54 ms / 2,000 ms |
コード長 | 554 bytes |
コンパイル時間 | 11,773 ms |
コンパイル使用メモリ | 168,600 KB |
実行使用メモリ | 186,740 KB |
最終ジャッジ日時 | 2024-08-28 07:09:19 |
合計ジャッジ時間 | 13,335 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
28,928 KB |
testcase_01 | AC | 52 ms
28,652 KB |
testcase_02 | AC | 52 ms
28,544 KB |
testcase_03 | AC | 51 ms
28,928 KB |
testcase_04 | AC | 51 ms
28,928 KB |
testcase_05 | AC | 52 ms
29,056 KB |
testcase_06 | AC | 51 ms
186,740 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (102 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 static System.Math; using System; public class Hello { static void Main() { string[] line = Console.ReadLine().Trim().Split(' '); var a = int.Parse(line[0]); var b = int.Parse(line[1]); var c = int.Parse(line[2]); var d = int.Parse(line[3]); getAns(a, b, c, d); } static void getAns(int a, int b, int c, int d) { int ans; if (a == 0) ans = d / b; else if (b == 0) ans = c / a; else ans = Min(c / a, d / b); Console.WriteLine(ans); } }