結果

問題 No.2622 Dam
ユーザー hiikunZhiikunZ
提出日時 2024-07-14 07:55:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 945 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 202,852 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-14 07:55:16
合計ジャッジ時間 3,437 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 6 ms
6,944 KB
testcase_04 AC 6 ms
6,944 KB
testcase_05 AC 6 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//#include<atcoder/all>
//using namespace atcoder;
using ll = long long int;
using ull = unsigned long long int;
using ld = long double;
constexpr ll MAX = 2000000000000000000;
constexpr ld PI = 3.14159265358979;
constexpr ll MOD = 0;//2024948111;
ld dotorad(ld K){ return PI * K / 180.0; }
ld radtodo(ld K){ return K * 180.0 / PI; }
mt19937 mt;
void randinit(){ srand((unsigned)time(NULL));mt = mt19937(rand()); }
void solve(){
    ll V,X,Fout,Fin,Q,R;
    cin >> V >> X >> Fout >> Fin >> Q >> R;
    ll x = X;
    X -= R * Fout;
    X += R * Fin;
    if(X > V){
        cout << "Overflow" << endl;
        return;
    }
    X -= (Q - R) * Fout;
    if(X <= 0 || x > X){
        cout << "Zero" << endl;
    }
    else if(x < X){
        cout << "Overflow" << endl;
    }
    else{
        cout << "Safe" << endl;
    }
}
int main(){
    ll T;
    cin >> T;
    for(ll i = 0; i < T; i++) solve();
}
0