結果
| 問題 |
No.968 引き算をして門松列(その3)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-01-13 21:11:42 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 882 bytes |
| コンパイル時間 | 954 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 78,464 KB |
| 最終ジャッジ日時 | 2024-12-22 21:09:02 |
| 合計ジャッジ時間 | 4,695 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | WA * 10 |
ソースコード
#!/usr/bin/env python3
import math
def iterate(a, b, c):
for a in range(a, a + 4):
for b in range(b, b + 4):
for c in range(c, c + 4):
yield a, b, c
yield max(b + 1, a), b, max(b + 2, c)
yield max(b + 2, a), b, max(b + 1, c)
yield a, max(a + 1, b), c
yield a, max(c + 1, b), c
def solve(a, b, c, x, y, z):
ans = math.inf
for na, nb, nc in iterate(a, b, c):
if na != nc and ((na < nb and nb > nc) or (na > nb and nb < nc)):
da = na - a
db = nb - b
dc = nc - c
if a - db - dc >= 1 and b - dc - da >= 1 and c - da - db >= 1:
ans = min(ans, x * da + y * db + z * dc)
if math.isinf(ans):
return -1
return ans
for _ in range(int(input())):
print(solve(*map(int, input().split())))