結果
問題 | No.2622 Dam |
ユーザー | GOTKAKO |
提出日時 | 2024-02-09 21:27:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 507 bytes |
コンパイル時間 | 2,007 ms |
コンパイル使用メモリ | 200,168 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-28 13:53:37 |
合計ジャッジ時間 | 2,496 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | AC | 4 ms
6,944 KB |
testcase_03 | AC | 4 ms
6,944 KB |
testcase_04 | AC | 4 ms
6,944 KB |
testcase_05 | AC | 4 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int t; cin >> t; while(t--){ long long V,X,Fo,Fi,Q,R; cin >> V >> X >> Fo >> Fi >> Q >> R; long long minus = Fo*Q,plus = Fi*R; X += -Fo*R+plus; if(X > V){cout << "Overflow" << endl; continue;} if(minus == plus) cout << "Safe" << endl; else if(plus > minus) cout << "Overflow" << endl; else cout << "Zero" << endl; } }