結果

問題 No.2622 Dam
ユーザー flippergoflippergo
提出日時 2024-11-15 10:01:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,648 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-11-15 10:01:34
合計ジャッジ時間 1,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 72 ms
65,792 KB
testcase_02 AC 72 ms
65,536 KB
testcase_03 AC 72 ms
66,176 KB
testcase_04 AC 69 ms
65,920 KB
testcase_05 AC 73 ms
66,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    v,x,fo,fi,q,r = map(int,input().split())
    if x+(fi-fo)*r>v:
        print("Overflow")
    else:
        d = fi*r-fo*q
        if d<0:
            print("Zero")
        elif d==0:
            print("Safe")
        else:
            print("Overflow")
0