记录详情

Accepted

/in/foo.cc: In function 'bool check(const string&)':
/in/foo.cc:5:34: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
  if (s.length() == 1 && "0" <= s && s <= "9" || s.length() == 2 && "10" <= s && s <= "99" || s.length() == 3 && ("100" <= s && s <= "199" || "200" <= s && s <= "255"))return true;
      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
/in/foo.cc:5:125: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
  if (s.length() == 1 && "0" <= s && s <= "9" || s.length() == 2 && "10" <= s && s <= "99" || s.length() == 3 && ("100" <= s && s <= "199" || "200" <= s && s <= "255"))return true;
                                                                                                                  ~~~~~~~~~~~^~~~~~~~~~~~~
/in/foo.cc:5:110: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
  if (s.length() == 1 && "0" <= s && s <= "9" || s.length() == 2 && "10" <= s && s <= "99" || s.length() == 3 && ("100" <= s && s <= "199" || "200" <= s && s <= "255"))return true;
                                                                                              ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/in/foo.cc: In function 'bool isLeagal(const string&)':
/in/foo.cc:10:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (int i = 0; i<s.length(); ++i) {
                  ~^~~~~~~~~~~
# 状态 耗时 内存占用
#1 Accepted 2ms 368.0 KiB
#2 Accepted 3ms 256.0 KiB
#3 Accepted 3ms 360.0 KiB

信息

递交者
类型
递交
题目
合法ip
语言
C++
递交时间
2018-03-23 20:48:02
评测时间
2018-03-23 23:58:07
评测机
分数
30
总耗时
9ms
峰值内存
368.0 KiB