結果
問題 | No.2622 Dam |
ユーザー | TairitsuMeow |
提出日時 | 2024-02-09 21:48:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,271 bytes |
コンパイル時間 | 1,347 ms |
コンパイル使用メモリ | 168,072 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-28 15:03:40 |
合計ジャッジ時間 | 1,773 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
ソースコード
// Problem: No.2622 Dam // Contest: yukicoder // URL: https://yukicoder.me/problems/no/2622 // Memory Limit: 512 MB // Time Limit: 2000 ms #include<bits/stdc++.h> #define debug(x) cerr<<(#x)<<" "<<(x)<<endl typedef long long ll; typedef long double ld; typedef unsigned long long ull; #define pii pair<ll,ll> #define rep(i,a,b) for(ll i=(a);i<=(b);++i) #define per(i,a,b) for(ll i=(a);i>=(b);--i) using namespace std; bool Mbe; ll read(){ ll x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } void write(ll x){ if(x<0)putchar('-'),x=-x; if(x>9)write(x/10); putchar(x%10+'0'); } ll T,X,V,Fo,Fi,R,Q; void solve(){ if(Fo>Fi){ puts("Zero"); return ; } if(Fo==Fi){ if(R==Q-1)puts("Safe"); else puts("Zero"); return ; } ll d1=R*(Fi-Fo); ll d2=-(Q-R)*Fo; if(X+d1<=0){ puts("Zero"); return ; } if(X+d1>V){ puts("Overflow"); return ; } if(d1+d2<0){ puts("Zero"); return ; } if(d1+d2==0){ puts("Safe"); return ; } puts("Overflow"); } bool Med; int main(){ cerr<<fabs(&Med-&Mbe)/1048576.0<<"MB\n"; T=read(); while(T--){ V=read(),X=read(),Fo=read(),Fi=read(),Q=read(),R=read(); solve(); } return 0; }