結果
問題 | No.345 最小チワワ問題 |
ユーザー | Nagisa |
提出日時 | 2016-02-27 02:55:49 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 507 bytes |
コンパイル時間 | 258 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,568 KB |
最終ジャッジ日時 | 2024-09-25 11:28:47 |
合計ジャッジ時間 | 4,989 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | |
other | AC * 18 TLE * 1 |
ソースコード
S = input() c = [] w1 = [] w2 = [] for k in range(len(S)): if S[k] == "c": c.append(k) for l in c: for m in range(l+1,len(S)): if S[m] == "w": w1.append(m) for l in w1: for m in range(l+1,len(S)): if S[m] == "w": w2.append(m) if len(c) * len(w1) * len(w2) == 0: print(-1) else: ans = 100 for p in c: for q in w1: for r in w2: if p < q < r: ans = min(ans,r-p+1) print(ans)