結果

問題 No.1517 Party Location
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-08-17 16:15:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 87,004 KB
実行使用メモリ 71,508 KB
最終ジャッジ日時 2023-09-02 04:16:23
合計ジャッジ時間 2,156 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,372 KB
testcase_01 AC 66 ms
71,272 KB
testcase_02 AC 67 ms
71,292 KB
testcase_03 AC 69 ms
71,248 KB
testcase_04 AC 68 ms
71,052 KB
testcase_05 AC 65 ms
71,056 KB
testcase_06 AC 65 ms
71,428 KB
testcase_07 AC 67 ms
71,088 KB
testcase_08 AC 68 ms
71,028 KB
testcase_09 AC 65 ms
71,420 KB
testcase_10 AC 68 ms
71,004 KB
testcase_11 AC 66 ms
71,084 KB
testcase_12 AC 68 ms
71,508 KB
testcase_13 AC 64 ms
71,200 KB
testcase_14 AC 67 ms
71,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())
a,b = map(int,input().split())
if a == b:
    print((a+b)*d//2)
else:
    print(min([a,b]) * d)
0