結果

問題 No.345 最小チワワ問題
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2021-02-04 14:44:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 53,684 KB
最終ジャッジ日時 2024-06-30 19:18:31
合計ジャッジ時間 2,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,344 KB
testcase_01 AC 39 ms
52,596 KB
testcase_02 AC 38 ms
53,684 KB
testcase_03 AC 38 ms
53,540 KB
testcase_04 AC 37 ms
52,152 KB
testcase_05 AC 38 ms
52,700 KB
testcase_06 AC 38 ms
51,496 KB
testcase_07 AC 37 ms
51,372 KB
testcase_08 AC 37 ms
52,504 KB
testcase_09 AC 38 ms
52,476 KB
testcase_10 AC 38 ms
52,216 KB
testcase_11 AC 37 ms
53,000 KB
testcase_12 AC 38 ms
52,640 KB
testcase_13 AC 38 ms
52,268 KB
testcase_14 AC 39 ms
52,696 KB
testcase_15 AC 38 ms
52,732 KB
testcase_16 AC 38 ms
52,684 KB
testcase_17 AC 38 ms
52,420 KB
testcase_18 AC 38 ms
52,740 KB
testcase_19 AC 39 ms
52,000 KB
testcase_20 AC 37 ms
52,992 KB
testcase_21 AC 38 ms
52,376 KB
testcase_22 AC 37 ms
53,420 KB
testcase_23 AC 38 ms
52,600 KB
testcase_24 AC 37 ms
52,352 KB
testcase_25 AC 37 ms
52,608 KB
testcase_26 AC 38 ms
52,020 KB
testcase_27 AC 37 ms
52,280 KB
testcase_28 AC 38 ms
52,476 KB
testcase_29 AC 38 ms
52,400 KB
testcase_30 AC 37 ms
52,132 KB
testcase_31 AC 37 ms
52,148 KB
権限があれば一括ダウンロードができます

ソースコード

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