結果
| 問題 | No.1517 Party Location |
| コンテスト | |
| ユーザー |
max4588
|
| 提出日時 | 2021-07-10 23:41:46 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
AC
|
| 実行時間 | 101 ms / 2,000 ms |
| コード長 | 133 bytes |
| 記録 | |
| コンパイル時間 | 340 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,484 KB |
| 最終ジャッジ日時 | 2026-03-04 12:43:05 |
| 合計ジャッジ時間 | 2,562 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 13 |
ソースコード
d = input()
a, b = input().split()
d = int(d)
a = int(a)
b = int(b)
if a < b:
cost = a * d
else:
cost = b * d
print(cost)
max4588