diff --git a/8.10/I-Wall/Readme.md b/8.10/I-Wall/Readme.md index 79680e8..0c4bba0 100644 --- a/8.10/I-Wall/Readme.md +++ b/8.10/I-Wall/Readme.md @@ -22,6 +22,20 @@ Next N lines describe coordinates of castle's vertices in a clockwise order. Eac ### Output Write to the output file the single number that represents the minimal possible length of the wall in feet that could be built around the castle to satisfy King's requirements. You must present the integer number of feet to the King, because the floating numbers are not invented yet. However, you must round the result in such a way, that it is accurate to 8 inches (1 foot is equal to 12 inches), since the King will not tolerate larger error in the estimates. +### Sample +#### input +9 100 +200 400 +300 400 +300 300 +400 300 +400 400 +500 400 +500 200 +350 200 +200 200 +#### output +1628 ### Hint 结果四舍五入就可以了 diff --git a/8.10/I-Wall/question.jpeg b/8.10/I-Wall/question.jpeg new file mode 100644 index 0000000..24ae304 Binary files /dev/null and b/8.10/I-Wall/question.jpeg differ diff --git a/8.10/I-Wall/鏍囩▼.cpp b/8.10/I-Wall/reference.cpp similarity index 100% rename from 8.10/I-Wall/鏍囩▼.cpp rename to 8.10/I-Wall/reference.cpp diff --git a/8.10/I-Wall/sketch.jpg b/8.10/I-Wall/sketch.jpg new file mode 100644 index 0000000..a70c156 Binary files /dev/null and b/8.10/I-Wall/sketch.jpg differ