結果

問題 No.345 最小チワワ問題
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2021-02-04 14:42:56
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 258 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 67,360 KB
最終ジャッジ日時 2024-06-30 19:14:32
合計ジャッジ時間 2,920 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,084 KB
testcase_01 AC 38 ms
53,132 KB
testcase_02 AC 37 ms
53,380 KB
testcase_03 AC 37 ms
52,620 KB
testcase_04 AC 37 ms
51,808 KB
testcase_05 AC 38 ms
51,908 KB
testcase_06 AC 38 ms
52,880 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 37 ms
52,432 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 37 ms
52,808 KB
testcase_15 AC 37 ms
52,436 KB
testcase_16 AC 38 ms
52,432 KB
testcase_17 AC 38 ms
52,740 KB
testcase_18 AC 37 ms
53,000 KB
testcase_19 AC 38 ms
52,304 KB
testcase_20 AC 38 ms
53,564 KB
testcase_21 AC 38 ms
53,736 KB
testcase_22 AC 37 ms
54,048 KB
testcase_23 AC 37 ms
51,896 KB
testcase_24 AC 38 ms
54,020 KB
testcase_25 AC 37 ms
52,752 KB
testcase_26 AC 38 ms
52,116 KB
testcase_27 AC 37 ms
52,764 KB
testcase_28 AC 38 ms
52,816 KB
testcase_29 AC 37 ms
52,808 KB
testcase_30 AC 38 ms
53,344 KB
testcase_31 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
if any([s.count('c')<1,s.count('w')<2]):
	print(-1)
else:
	C=[i for i,v in enumerate(s) if v=='c']
	W=[i for i,v in enumerate(s) if v=='w']
m=1000
for c in C:
	tW=[i for i in W if c<i]
	if len(tW)>1:
		m=min(m,tW[1]-c+1)
print(-1 if m==1000 else m)
0