結果
| 問題 | No.671 1000000007 |
| コンテスト | |
| ユーザー |
testestest
|
| 提出日時 | 2018-05-04 00:23:12 |
| 言語 | C90(gcc12) (gcc 12.4.0) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 48 bytes |
| 記録 | |
| コンパイル時間 | 107 ms |
| コンパイル使用メモリ | 27,940 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-03-08 16:16:52 |
| 合計ジャッジ時間 | 1,813 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 9 |
コンパイルメッセージ
main.c:1:1: warning: data definition has no type or storage class
1 | s;main(){printf("%d",abs(strlen(gets(&s))-10));}
| ^
main.c: In function ‘main’:
main.c:1:10: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch]
1 | s;main(){printf("%d",abs(strlen(gets(&s))-10));}
| ^~~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
+++ |+#include <stdio.h>
1 | s;main(){printf("%d",abs(strlen(gets(&s))-10));}
main.c:1:26: warning: incompatible implicit declaration of built-in function ‘strlen’ [-Wbuiltin-declaration-mismatch]
1 | s;main(){printf("%d",abs(strlen(gets(&s))-10));}
| ^~~~~~
main.c:1:1: note: include ‘<string.h>’ or provide a declaration of ‘strlen’
+++ |+#include <string.h>
1 | s;main(){printf("%d",abs(strlen(gets(&s))-10));}
main.c:1:33: warning: passing argument 1 of ‘strlen’ makes pointer from integer without a cast [-Wint-conversion]
1 | s;main(){printf("%d",abs(strlen(gets(&s))-10));}
| ^~~~~~~~
| |
| int
main.c:1:33: note: expected ‘const char *’ but argument is of type ‘int’
main.c:1:42: warning: ‘abs’ argument 1 type is ‘long unsigned int’ where ‘int’ is expected in a call to built-in function declared without prototype [-Wbuiltin-declaration-mismatch]
1 | s;main(){printf("%d",abs(strlen(gets(&s))-10));}
| ~~~~~~~~~~~~~~~~^~~
<built-in>: note: built-in ‘abs’ declared here
/usr/bin/ld: /tmp/ccTL7VNl.o: in function `main':
main.c:(.text.startup+0x12): 警告: the `gets' function is dangerous and should not be used.
ソースコード
s;main(){printf("%d",abs(strlen(gets(&s))-10));}
testestest