結果
問題 | No.2622 Dam |
ユーザー | hals |
提出日時 | 2024-02-28 02:42:54 |
言語 | Julia (1.10.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 842 bytes |
コンパイル時間 | 100 ms |
コンパイル使用メモリ | 6,688 KB |
実行使用メモリ | 247,080 KB |
最終ジャッジ日時 | 2024-10-01 17:45:13 |
合計ジャッジ時間 | 2,721 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 291 ms
244,340 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
function main() t = int(input()) for _ = 1:t v, x, fo, fi, q, r = int(inputs()) if x + (fi - fo) * r - fo * (q - r) == x println("Safe") elseif x + (fi - fo) * r < fo * (q - r) println("Zero") elseif x + (fi - fo) * r > v println("Overflow") elseif x + (fi - fo) * r - fo * (q - r) > x println("Overflow") else println("Zero") end end end # --------input func---------- input() = readline() inputs() = split(readline()) int(s::AbstractChar) = parse(Int, s) int(s::AbstractString) = parse(Int, s) int(v::AbstractArray) = map(x -> parse(Int, x), v) debug(x...) = println(stderr, x...) isfile("myinput.txt") && (mystdin = open("myinput.txt", "r"); redirect_stdin(mystdin)) main() @isdefined(mystdin) && close(mystdin)