結果
問題 | No.346 チワワ数え上げ問題 |
ユーザー | はむ吉🐹 |
提出日時 | 2016-02-26 23:36:31 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 614 bytes |
コンパイル時間 | 136 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 19,104 KB |
最終ジャッジ日時 | 2024-09-23 02:24:21 |
合計ジャッジ時間 | 5,168 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 32 ms
10,624 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 31 ms
10,624 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 42 ms
11,648 KB |
testcase_21 | TLE | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import itertools def mykey(c): if c not in "cw": return "*" else: return c def solve(s): answer = 0 c_nums = [] w_nums = [] for k, g in itertools.groupby(s, mykey): if k == "c": c_nums.append(len("".join(g))) elif k == "w": if not c_nums: continue w_nums.append(len("".join(g))) for i, x in enumerate(c_nums): w = sum(w_nums[i:]) answer += x * w * (w - 1) // 2 return answer if __name__ == '__main__': print(solve(input()))