记录详情

Wrong Answer

/in/foo.cc: In function 'int main()':
/in/foo.cc:8:2: warning: 'char* gets(char*)' is deprecated [-Wdeprecated-declarations]
  gets(s);
  ^~~~
In file included from /usr/include/c++/6/cstdio:42:0,
                 from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:46,
                 from /in/foo.cc:1:
/usr/include/stdio.h:640:14: note: declared here
 extern char *gets (char *__s) __wur __attribute_deprecated__;
              ^~~~
/in/foo.cc:8:8: warning: 'char* gets(char*)' is deprecated [-Wdeprecated-declarations]
  gets(s);
        ^
In file included from /usr/include/c++/6/cstdio:42:0,
                 from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:46,
                 from /in/foo.cc:1:
/usr/include/stdio.h:640:14: note: declared here
 extern char *gets (char *__s) __wur __attribute_deprecated__;
              ^~~~
/in/foo.cc:36:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  } else if (k > strlen(s) - i) {
             ~~^~~~~~~~~~~~~~~
/in/foo.cc:38:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int n = 0; n < k - strlen(s) + i+1; n++)
                   ~~^~~~~~~~~~~~~~~~~~~~~
/in/foo.cc:9:6: warning: 'm' may be used uninitialized in this function [-Wmaybe-uninitialized]
  int m ;
      ^
/tmp/ccOr2QYk.o: In function `main':
foo.cc:(.text.startup+0x11): warning: the `gets' function is dangerous and should not be used.
# 状态 耗时 内存占用
#1 Accepted 1ms 400.0 KiB
#2 Accepted 1ms 344.0 KiB
#3 Wrong Answer 1ms 376.0 KiB
#4 Accepted 1ms 376.0 KiB

信息

递交者
类型
自测
题目
P1305 B. Round Decimal
语言
C++
递交时间
2021-12-23 18:25:44
评测时间
2021-12-23 18:26:36
评测机
分数
30
总耗时
5ms
峰值内存
400.0 KiB