結果
問題 | No.345 最小チワワ問題 |
ユーザー | hiro_metal_core |
提出日時 | 2017-11-04 01:15:45 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 55 ms / 2,000 ms |
コード長 | 279 bytes |
コンパイル時間 | 136 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-25 12:05:27 |
合計ジャッジ時間 | 1,964 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
ソースコード
S = input() small = 1000 l = len(S) for i in range(l): for j in range(i+1, l): for k in range(j+1, l): if (S[i] == 'c' and S[j] == 'w' and S[k] == 'w'): small = min(small, k-i+1) if (small == 1000): print(-1) else: print(small)