結果

問題 No.2622 Dam
ユーザー loop0919loop0919
提出日時 2024-01-01 23:46:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 560 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 67,940 KB
最終ジャッジ日時 2024-09-27 17:36:55
合計ジャッジ時間 888 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,604 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 60 ms
66,492 KB
testcase_04 AC 58 ms
67,940 KB
testcase_05 AC 58 ms
67,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    V, X, F_out, F_in, Q, R = map(int, input().split())
    
    assert 1 <= X <= V <= 10**18
    assert 1 <= F_out <= 10**9
    assert 1 <= F_in <= 10**9
    assert 1 <= R < Q <= 10**9
    
    F_sunny, F_rainy = - F_out, F_in - F_out
    
    if X + R * F_rainy >= V:
        print("Overflow")
        return
    
    diff = R * F_rainy + (Q - R) * F_sunny
    if diff < 0:
        print("Zero")
    elif diff > 0:
        print("Overflow")
    else:
        print("Safe")

T = int(input())
assert 1 <= T <= 1000
for _ in range(T):
    solve()
0