結果

問題 No.346 チワワ数え上げ問題
ユーザー yumechiyumechi
提出日時 2016-03-08 22:03:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 526 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 186,716 KB
最終ジャッジ日時 2024-09-24 15:33:19
合計ジャッジ時間 6,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
67,848 KB
testcase_01 AC 43 ms
56,320 KB
testcase_02 AC 42 ms
55,892 KB
testcase_03 AC 43 ms
55,832 KB
testcase_04 AC 44 ms
56,712 KB
testcase_05 AC 43 ms
56,056 KB
testcase_06 AC 44 ms
56,260 KB
testcase_07 AC 44 ms
55,008 KB
testcase_08 AC 47 ms
55,476 KB
testcase_09 AC 43 ms
55,668 KB
testcase_10 AC 236 ms
76,696 KB
testcase_11 AC 117 ms
76,496 KB
testcase_12 AC 166 ms
76,248 KB
testcase_13 AC 105 ms
76,188 KB
testcase_14 AC 50 ms
63,016 KB
testcase_15 AC 152 ms
76,732 KB
testcase_16 AC 180 ms
76,332 KB
testcase_17 AC 225 ms
77,180 KB
testcase_18 AC 226 ms
76,960 KB
testcase_19 AC 191 ms
76,828 KB
testcase_20 AC 52 ms
69,892 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
from operator import mul

# nC2
def combi(n):
    return (n * (n-1)) // 2
    
def solve():
    s = input()
    cl, wl = [], []

    slen = len(s)
    for i in range(slen):
        if s[i] == "c":
            cl.append(i)
            continue
        elif s[i] == "w":
            wl.append(i)
    
    res = 0
    for cidx in cl:
        wlen = len([0 for i in wl if i > cidx])
        if wlen < 2:
            break
        res += combi(wlen)
    print(res)

if __name__=="__main__":
    solve()
0