結果
| 問題 | No.1517 Party Location |
| コンテスト | |
| ユーザー |
wolgnik
|
| 提出日時 | 2021-05-28 21:24:08 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 64 ms / 2,000 ms |
| + 882µs | |
| コード長 | 108 bytes |
| 記録 | |
| コンパイル時間 | 247 ms |
| コンパイル使用メモリ | 95,984 KB |
| 実行使用メモリ | 78,976 KB |
| 最終ジャッジ日時 | 2026-07-25 10:44:07 |
| 合計ジャッジ時間 | 2,533 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 13 |
ソースコード
import sys input = sys.stdin.readline d = int(input()) a, b = map(int, input().split()) print(d * min(a, b))
wolgnik