結果
| 問題 |
No.346 チワワ数え上げ問題
|
| コンテスト | |
| ユーザー |
mesame3993
|
| 提出日時 | 2021-09-16 08:19:06 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 148 bytes |
| コンパイル時間 | 83 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 17,440 KB |
| 最終ジャッジ日時 | 2024-06-29 14:00:32 |
| 合計ジャッジ時間 | 7,966 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 3 |
| other | AC * 20 TLE * 2 -- * 1 |
ソースコード
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