結果

問題 No.1517 Party Location
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-05-28 20:22:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 67 bytes
コンパイル時間 1,972 ms
コンパイル使用メモリ 86,144 KB
実行使用メモリ 71,028 KB
最終ジャッジ日時 2023-09-02 04:06:32
合計ジャッジ時間 2,526 ms
ジャッジサーバーID
(参考情報)
judge12 / judge16
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
70,748 KB
testcase_01 AC 78 ms
70,680 KB
testcase_02 AC 76 ms
70,800 KB
testcase_03 AC 75 ms
70,856 KB
testcase_04 AC 77 ms
70,980 KB
testcase_05 AC 77 ms
70,840 KB
testcase_06 AC 81 ms
70,864 KB
testcase_07 AC 79 ms
70,836 KB
testcase_08 AC 79 ms
71,028 KB
testcase_09 AC 79 ms
71,024 KB
testcase_10 AC 79 ms
70,680 KB
testcase_11 AC 79 ms
70,888 KB
testcase_12 AC 77 ms
70,716 KB
testcase_13 AC 78 ms
70,524 KB
testcase_14 AC 79 ms
70,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())
a,b = map(int,input().split())
print(min(d*b,a*d))
0