結果
| 問題 |
No.69 文字を自由に並び替え
|
| コンテスト | |
| ユーザー |
nxteru
|
| 提出日時 | 2017-04-05 15:23:35 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 120 bytes |
| コンパイル時間 | 100 ms |
| コンパイル使用メモリ | 28,800 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-14 06:32:01 |
| 合計ジャッジ時間 | 724 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 |
コンパイルメッセージ
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: warning: type defaults to 'int' in declaration of 'a' [-Wimplicit-int]
main.c:1:8: warning: 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: warning: 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: type of 'b' defaults to 'int' [-Wimplicit-int]
main.c:1:26: warning: 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>'; did you forget to '#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: warning: 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