結果
問題 | No.2622 Dam |
ユーザー | add4567 |
提出日時 | 2024-02-09 22:17:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 417 bytes |
コンパイル時間 | 1,481 ms |
コンパイル使用メモリ | 166,540 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-28 15:33:33 |
合計ジャッジ時間 | 1,848 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int T; cin >> T; for (int i = 0;i<T;i++) { int64_t V, X, F1, F2, Q, R; cin >> V >> X >> F1 >> F2 >> Q >> R; int64_t ol; ol = (R * F2) - (Q * F1); if (V < R * F2 + X) { cout << "Overflow" << endl; continue; } if (ol < 0) { cout << "Zero" << endl; } else if (ol == 0) { cout << "Safe" << endl; } else { cout << "Overflow" << endl; } } }