結果

問題 No.2622 Dam
ユーザー ShirotsumeShirotsume
提出日時 2024-02-11 00:42:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,888 KB
実行使用メモリ 67,092 KB
最終ジャッジ日時 2024-09-28 17:22:57
合計ジャッジ時間 1,063 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,868 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

def solve():
    v, x, vout, vin, q, r = mi()
    vin -= vout
    delta = vin * r - vout * (q - r)
    if delta > 0:
        print('Overflow')
    elif delta < 0:
        print('Zero')
    else:
        d1 = vin * r
        if x + d1 > v:
            print('Overflow')
        else:
            print('Safe')
    
    
    
for _ in range(ii()):
    solve()
0