結果
| 問題 |
No.346 チワワ数え上げ問題
|
| コンテスト | |
| ユーザー |
mesame3993
|
| 提出日時 | 2021-09-16 08:19:43 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 148 bytes |
| コンパイル時間 | 403 ms |
| コンパイル使用メモリ | 82,228 KB |
| 実行使用メモリ | 94,732 KB |
| 最終ジャッジ日時 | 2024-06-29 14:01:32 |
| 合計ジャッジ時間 | 5,729 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 3 |
| other | AC * 20 TLE * 1 -- * 2 |
ソースコード
s = input()
n = len(s)
ans = 0
for i in range(n):
if s[i] == 'c':
tmp = s[i:]
w = tmp.count('w')
if w >= 2:
ans += w*(w-1) // 2
print(ans)
mesame3993