{"id":150,"date":"2024-04-26T14:54:24","date_gmt":"2024-04-26T06:54:24","guid":{"rendered":"https:\/\/seanxd.com\/?p=150"},"modified":"2024-04-26T14:54:26","modified_gmt":"2024-04-26T06:54:26","slug":"zerojudge-a799","status":"publish","type":"post","link":"https:\/\/seanxd.com\/en\/zerojudge-a799\/","title":{"rendered":"ZeroJudge A799: Country of Integrity"},"content":{"rendered":"<p class=\"\">Long, long ago, there was a country called \"Country of Integrity.\" The people of this country were very honest in everything they did, living with integrity. As a result, the country was peaceful, happy, and prosperous.<\/p>\n\n\n\n<p class=\"translation-block\">However, there was an unwritten custom in this country: they disliked negative numbers. They regarded negative numbers as symbols of evil, so they detested seeing negative numbers. They would simply <strong>remove the negative sign<\/strong> whenever they saw a negative number. For example, \"-1\" would become \"1.\"<\/p>\n\n\n\n<p class=\"\">Xiao Hua is a middle school student who has just moved to the Country of Integrity from another country. Every time he writes a negative number on his math test paper, he gets severely beaten by other classmates and teachers. Can you help him?<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Sample Inputs\/Outputs<\/h2>\n\n\n\n<figure class=\"wp-block-table nfd-wb-animate nfd-wb-fade-in-bottom-short\"><table class=\"has-fixed-layout\"><thead><tr><th>Sample Input(s)<\/th><th>Sample Output(s)<\/th><\/tr><\/thead><tbody><tr><td>The input consists of only one line containing an integer N.<br>For 40% of the test cases, it is guaranteed that N \u2265 0.<br>For 100% of the test cases, it is guaranteed that \u22122147483647 &lt; N &lt; 2147483647.<\/td><td>Please output an integer representing the number favored by the country of Positive Values.<\/td><\/tr><tr><td>-5<\/td><td>5<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Thought Process<\/h2>\n\n\n\n<p class=\"translation-block\">Output the absolute value of N directly using abs(N).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Sample Code\uff0d<a href=\"https:\/\/zerojudge.tw\/ShowProblem?problemid=a799\" target=\"_blank\" rel=\"noreferrer noopener\">ZeroJudge A799: Country of Integrity<\/a><\/h3>\n\n\n\n<div class=\"hcb_wrap nfd-wb-animate nfd-wb-reveal-right nfd-delay-150\"><pre class=\"prism line-numbers lang-cpp\" data-lang=\"C++\"><code>#include &lt;iostream&gt;\n#include &lt;stdio.h&gt;\nusing namespace std;\n\nint main() {\n  int N;\n  scanf(&quot;%d&quot;, &N);\n  printf(&quot;%d\\n&quot;, abs(N));\n}\n\n\/\/Z.O.J. A799\n\/\/Dr. SeanXD<\/code><\/pre><\/div>","protected":false},"excerpt":{"rendered":"<p>\u5f88\u4e45\u5f88\u4e45\u4ee5\u524d\uff0c\u6709\u4e00\u500b\u570b\u5bb6\u53eb\u505a\u300c\u6b63\u503c\u570b\u300d\uff0c\u9019\u500b\u570b\u5bb6\u7684\u4eba\u505a\u4ec0\u9ebc\u4e8b\u90fd\u975e\u5e38\u6b63\u76f4\uff0c\u505a\u4eba\u5766\u8569\u8569\u3002\u4e5f\u56e0\u6b64\uff0c\u570b\u5bb6\u5e73\u5b89\u548c\u6a02\u3001\u751f\u6d3b [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","footnotes":""},"categories":[6],"tags":[13],"class_list":["post-150","post","type-post","status-publish","format-standard","hentry","category-6","tag-13"],"blocksy_meta":[],"_links":{"self":[{"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/posts\/150","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/comments?post=150"}],"version-history":[{"count":2,"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/posts\/150\/revisions"}],"predecessor-version":[{"id":152,"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/posts\/150\/revisions\/152"}],"wp:attachment":[{"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/media?parent=150"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/categories?post=150"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/seanxd.com\/en\/wp-json\/wp\/v2\/tags?post=150"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}