QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#460669#3184. Around the TrackHuangHanShengCompile Error//Rust5.4kb2024-07-02 00:23:202024-07-02 00:23:21

詳細信息

error[E0308]: arguments to this function are incorrect
   --> answer.code:157:16
    |
157 |             if ccw(hull[origin], hull[x], hull[k]) <= 0 {
    |                ^^^ ------------  -------  ------- expected `&Pos`, found `usize`
    |                    |             |
    |                    |             expected `&Pos`, found `usize`
    |                    expected `&Pos`, found `usize`
    |
note: function defined here
   --> answer.code:17:4
    |
17  | fn ccw(p1: &Pos, p2: &Pos, p3: &Pos) -> i32 {
    |    ^^^ --------  --------  --------

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.