結果
| 問題 |
No.966 引き算をして門松列(その1)
|
| コンテスト | |
| ユーザー |
Konton7
|
| 提出日時 | 2020-01-13 21:19:56 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,620 bytes |
| コンパイル時間 | 125 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-12-22 21:33:53 |
| 合計ジャッジ時間 | 1,047 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 3 WA * 2 |
ソースコード
def makekado(x, y, z):
ans = 0
maxxyz = max(x, y, z)
minxyz = min(x, y, z)
if x > z:
x, z = z, x
if x == y and y == z:
if x >= 3:
ans = 3
else:
ans = -1
elif x == z:
if maxxyz == y:
if x == 1:
ans = -1
else:
ans = 1
if minxyz == y:
if y == 1:
if x == 2:
ans = -1
else:
ans = 1
else:
if y == x - 1:
ans = 2
else:
ans = 1
else:
if maxxyz == y:
if y > z:
ans = 0
else:
if y < 3:
ans = -1
else:
if y - x == 1:
ans = 2
else:
ans = -1
elif minxyz == y:
if y < x:
ans = 0
else:
if x == 1:
ans = -1
else:
ans = 1
else:
if x == 1:
if y == 2:
ans = -1
else:
ans = z - y + 1
else:
if y == x + 1:
ans = 2
else:
ans = min(y - x, z - y) + 1
print(ans)
return
n = int(input())
for i in range(n):
a, b, c = [ int(v) for v in input().split() ]
makekado(a, b, c)
Konton7