結果
| 問題 | No.346 チワワ数え上げ問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-06-25 18:07:12 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 225 bytes |
| 記録 | |
| コンパイル時間 | 167 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 17,440 KB |
| 最終ジャッジ日時 | 2024-10-04 08:59:38 |
| 合計ジャッジ時間 | 4,182 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 3 |
| other | AC * 10 TLE * 1 -- * 12 |
ソースコード
import re
import itertools
def main():
S = input()
ans = 0
s = re.findall(r'[cw]', S)
for cww in itertools.combinations(s, 3):
if cww == ('c', 'w', 'w'):
ans += 1
print(ans)
main()