실행 실패 (제출 코드 컴파일 에러)
Main.cpp:6:13: error: ‘__float128’ does not name a type; did you mean ‘_Float128’? 6 | using lld = __float128; | ^~~~~~~~~~ | _Float128 Main.cpp:16:5: error: ‘lld’ does not name a type; did you mean ‘ll’? 16 | lld sin(lld x) | ^~~ | ll Main.cpp: In member function ‘void Solver::solve()’: Main.cpp:38:9: error: ‘lld’ was not declared in this scope; did you mean ‘ll’? 38 | lld l = (c - b) / (lld)a, r = (c + b) / (lld)a; | ^~~ | ll Main.cpp:39:9: error: ‘l’ was not declared in this scope; did you mean ‘ll’? 39 | l -= 0.1, r += 0.1; | ^ | ll Main.cpp:39:19: error: ‘r’ was not declared in this scope 39 | l -= 0.1, r += 0.1; | ^ Main.cpp:43:17: error: expected ‘;’ before ‘m’ 43 | lld m = (l + r) / 2; | ^ Main.cpp:44:17: error: expected ‘;’ before ‘val’ 44 | lld val = a * m + b * sin(m); | ^~~ Main.cpp:45:17: error: ‘val’ was not declared in this scope 45 | if (val < c) | ^~~ Main.cpp:46:21: error: ‘m’ was not declared in this scope; did you mean ‘tm’? 46 | l = m; | ^ | tm Main.cpp:48:21: error: ‘m’ was not declared in this scope; did you mean ‘tm’? 48 | r = m; | ^ | tm Main.cpp:50:13: error: expected ‘;’ before ‘x’ 50 | lld x = (l + r) / 2; | ^ Main.cpp:51:13: error: expected ‘;’ before ‘u’ 51 | lld u = 1'000'000, r_ = 0.5; | ^ Main.cpp:52:34: error: ‘x’ was not declared in this scope 52 | ld y = (ld)((__int128_t)(x * u + r_) / u); | ^ Main.cpp:52:38: error: ‘u’ was not declared in this scope 52 | ld y = (ld)((__int128_t)(x * u + r_) / u); | ^ Main.cpp:52:42: error: ‘r_’ was not declared in this scope 52 | ld y = (ld)((__int128_t)(x * u + r_) / u); | ^~
정답 개수:
-
틀린 개수:
-
실행 실패 개수:
-
반례를 발견하지 못했습니다.