結果

問題 No.2621 Fee Schedule
ユーザー 天边的生活天边的生活
提出日時 2024-02-09 22:30:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 64 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 53,896 KB
最終ジャッジ日時 2024-09-28 15:45:00
合計ジャッジ時間 1,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,484 KB
testcase_01 AC 32 ms
52,016 KB
testcase_02 AC 33 ms
51,872 KB
testcase_03 AC 33 ms
52,512 KB
testcase_04 AC 31 ms
52,340 KB
testcase_05 AC 33 ms
52,216 KB
testcase_06 AC 33 ms
53,896 KB
testcase_07 AC 33 ms
52,392 KB
testcase_08 AC 33 ms
53,644 KB
testcase_09 AC 33 ms
52,700 KB
testcase_10 AC 32 ms
52,944 KB
testcase_11 AC 32 ms
53,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c = [int(x) for x in input().split()]
print(min(a * c, b))
0