結果

問題 No.2621 Fee Schedule
ユーザー bluemeganebluemegane
提出日時 2024-02-10 06:51:18
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 7,655 ms
コンパイル使用メモリ 157,700 KB
実行使用メモリ 177,876 KB
最終ジャッジ日時 2024-02-10 06:51:39
合計ジャッジ時間 9,374 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
30,884 KB
testcase_01 AC 59 ms
30,884 KB
testcase_02 AC 50 ms
30,884 KB
testcase_03 AC 51 ms
30,884 KB
testcase_04 AC 50 ms
31,012 KB
testcase_05 AC 49 ms
31,012 KB
testcase_06 AC 51 ms
31,012 KB
testcase_07 AC 51 ms
31,012 KB
testcase_08 AC 50 ms
31,012 KB
testcase_09 AC 52 ms
31,012 KB
testcase_10 AC 72 ms
31,012 KB
testcase_11 AC 59 ms
177,876 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (140 ms)。
MSBuild のバージョン 17.7.3+8ec440e68 (.NET)
  main -> /home/judge/data/code/bin/Release/net7.0/main.dll
  main -> /home/judge/data/code/bin/Release/net7.0/publish/

ソースコード

diff #

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]);
        Console.WriteLine(Min(a * c, b));
    }
}
0