結果
| 問題 | No.69 文字を自由に並び替え |
| コンテスト | |
| ユーザー |
nxteru
|
| 提出日時 | 2017-04-05 15:23:35 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 120 bytes |
| 記録 | |
| コンパイル時間 | 71 ms |
| コンパイル使用メモリ | 25,400 KB |
| 最終ジャッジ日時 | 2026-02-21 23:37:54 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.c:1:1: warning: data definition has no type or storage class
1 | a[150],t=1;main(b){for(b=getchar();b+1;a[b]+=t,b=getchar())t=b-10?t:-1;for(t=122;t>96;t=a[t]?0:t-1);puts(t?"YES":"NO");}
| ^
main.c:1:1: error: type defaults to 'int' in declaration of 'a' [-Wimplicit-int]
main.c:1:8: error: type defaults to 'int' in declaration of 't' [-Wimplicit-int]
1 | a[150],t=1;main(b){for(b=getchar();b+1;a[b]+=t,b=getchar())t=b-10?t:-1;for(t=122;t>96;t=a[t]?0:t-1);puts(t?"YES":"NO");}
| ^
main.c:1:12: error: return type defaults to 'int' [-Wimplicit-int]
1 | a[150],t=1;main(b){for(b=getchar();b+1;a[b]+=t,b=getchar())t=b-10?t:-1;for(t=122;t>96;t=a[t]?0:t-1);puts(t?"YES":"NO");}
| ^~~~
main.c: In function 'main':
main.c:1:12: warning: old-style function definition [-Wold-style-definition]
main.c:1:12: error: type of 'b' defaults to 'int' [-Wimplicit-int]
main.c:1:26: error: implicit declaration of function 'getchar' [-Wimplicit-function-declaration]
1 | a[150],t=1;main(b){for(b=getchar();b+1;a[b]+=t,b=getchar())t=b-10?t:-1;for(t=122;t>96;t=a[t]?0:t-1);puts(t?"YES":"NO");}
| ^~~~~~~
main.c:1:1: note: 'getchar' is defined in header '<stdio.h>'; this is probably fixable by adding '#include <stdio.h>'
+++ |+#include <stdio.h>
1 | a[150],t=1;main(b){for(b=getchar();b+1;a[b]+=t,b=getchar())t=b-10?t:-1;for(t=122;t>96;t=a[t]?0:t-1);puts(t?"YES":"NO");}
main.c:1:101: error: implicit declaration of function 'puts' [-Wimplicit-function-declaration]
1 | a[150],t=1;main(b){for(b=getchar();b+1;a[b]+=t,b=getchar())t=b-10?t:-1;for(t=122;t>96;t=a[t]?0:t-1);puts(t?"YES":"NO");}
| ^~~~
main.c:1:101: note: include '<stdio.h>' or provide a declaration of 'puts'
ソースコード
a[150],t=1;main(b){for(b=getchar();b+1;a[b]+=t,b=getchar())t=b-10?t:-1;for(t=122;t>96;t=a[t]?0:t-1);puts(t?"YES":"NO");}
nxteru