結果
問題 | No.2622 Dam |
ユーザー | ygussany |
提出日時 | 2024-02-09 21:27:39 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 555 bytes |
コンパイル時間 | 189 ms |
コンパイル使用メモリ | 29,184 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-28 13:53:59 |
合計ジャッジ時間 | 627 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
#include <stdio.h> int solve(long long V, long long X, int Fo, int Fi, int Q, int R) { long long Y = X; Y += (Fi - Fo) * R; if (Y > V) return 1; Y -= Fo * (Q - R); if (Y < X) return -1; else if (Y > X) return 1; else return 0; } int main() { int T, Fo, Fi, Q, R, ans; long long V, X; scanf("%d", &T); while (T--) { scanf("%lld %lld %d %d %d %d", &V, &X, &Fo, &Fi, &Q, &R); ans = solve(V, X, Fo, Fi, Q, R); if (ans < 0) printf("Zero\n"); else if (ans > 0) printf("Overflow\n"); else printf("Safe\n"); } fflush(stdout); return 0; }