結果

問題 No.1517 Party Location
ユーザー googol_S0googol_S0
提出日時 2021-05-28 20:40:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 96 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 86,908 KB
実行使用メモリ 71,216 KB
最終ジャッジ日時 2023-09-02 04:09:48
合計ジャッジ時間 3,017 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
71,008 KB
testcase_01 AC 80 ms
71,080 KB
testcase_02 AC 85 ms
70,992 KB
testcase_03 AC 82 ms
71,216 KB
testcase_04 AC 82 ms
70,844 KB
testcase_05 AC 81 ms
71,200 KB
testcase_06 AC 82 ms
70,840 KB
testcase_07 AC 86 ms
71,068 KB
testcase_08 AC 81 ms
71,212 KB
testcase_09 AC 84 ms
70,828 KB
testcase_10 AC 83 ms
70,996 KB
testcase_11 AC 80 ms
70,912 KB
testcase_12 AC 80 ms
71,196 KB
testcase_13 AC 82 ms
71,156 KB
testcase_14 AC 79 ms
71,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D=int(input())
A,B=map(int,input().split())
if min(A,B)==0:
  print(0)
else:
  print(D*min(B,A))
0