結果
| 問題 |
No.345 最小チワワ問題
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-04-04 14:36:54 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 193 bytes |
| コンパイル時間 | 153 ms |
| コンパイル使用メモリ | 82,216 KB |
| 実行使用メモリ | 53,688 KB |
| 最終ジャッジ日時 | 2024-11-25 05:55:12 |
| 合計ジャッジ時間 | 2,265 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | AC * 11 WA * 18 |
ソースコード
S = input()
c_idx = S.find("c")
w_1_idx = S.find("w", c_idx)
w_2_idx = S.find("w", w_1_idx)
if c_idx != -1 and w_1_idx != -1 and w_2_idx != -1:
print(w_2_idx-c_idx+1)
else :
print(-1)