結果

問題 No.345 最小チワワ問題
ユーザー くれちーくれちー
提出日時 2016-08-10 23:29:00
言語 C90
(gcc 12.3.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 463 bytes
コンパイル時間 678 ms
コンパイル使用メモリ 21,248 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-15 22:59:57
合計ジャッジ時間 2,417 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28 RE * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:8:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         scanf("%s", s);
      |         ^~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>

int main() {
	char s[101];
	int l = 101, i, j, k;

	scanf("%s", s);

	for (i = 0; i < strlen(s) - 2; i++) {
		if (s[i] == 'c') {
			for (j = i + 1; j < strlen(s) - 1; j++) {
				if (s[j] == 'w') {
					for (k = j + 1; k < strlen(s); k++) {
						if (s[k] == 'w') {
							if (k - i + 1 < l) l = k - i + 1;
							break;
						}
					}
				}
			}
		}
	}

	if (l == 101) printf("-1\n");
	else printf("%d\n", l);

	return 0;
}
0