結果
問題 | No.966 引き算をして門松列(その1) |
ユーザー | tamato |
提出日時 | 2020-01-13 20:40:06 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,430 bytes |
コンパイル時間 | 292 ms |
コンパイル使用メモリ | 82,448 KB |
実行使用メモリ | 77,424 KB |
最終ジャッジ日時 | 2024-06-01 10:45:26 |
合計ジャッジ時間 | 1,214 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,548 KB |
testcase_01 | AC | 40 ms
52,704 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 109 ms
76,700 KB |
testcase_06 | AC | 123 ms
77,424 KB |
ソースコード
def main(): import sys input = sys.stdin.readline T = int(input()) for _ in range(T): a, b, c = map(int, input().split()) if a == b == c: if a > 2: print(3) else: print(-1) elif a == c: if b > a: if a > 1: print(1) else: print(-1) elif b == a-1: if b > 1: print(2) else: print(-1) else: print(1) elif a == b or b == c: if max(a, b, c) > b: if b > 1: print(1) else: print(-1) elif min(a, b, c) == b-1: if b > 2: print(2) else: print(-1) else: print(1) else: if b == max(a, b, c) or b == min(a, b, c): print(0) else: if min(a, b, c) == 1 and b == 2: print(-1) continue A = min(a, b, c) B = b C = max(a, b, c) ans1 = B - A + 1 ans2 = C - B + 1 if B - 1 != A else C - B + 2 print(min(ans1, ans2)) if __name__ == '__main__': main()