結果
| 問題 | 
                            No.2201 p@$$w0rd
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2023-02-24 23:25:07 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 125 bytes | 
| コンパイル時間 | 203 ms | 
| コンパイル使用メモリ | 82,104 KB | 
| 実行使用メモリ | 54,216 KB | 
| 最終ジャッジ日時 | 2024-09-13 06:10:03 | 
| 合計ジャッジ時間 | 2,086 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 3 WA * 21 | 
ソースコード
s = input()
replaces = ["l", "o", "a", "s"]
ans = 0
for i in range(len(s)):
  if s[i] in replaces:
    ans += 1
print(ans)