結果

問題 No.346 チワワ数え上げ問題
ユーザー yumechiyumechi
提出日時 2016-03-08 22:06:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 487 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 257,816 KB
最終ジャッジ日時 2024-09-24 15:38:48
合計ジャッジ時間 5,336 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,836 KB
testcase_01 AC 36 ms
53,508 KB
testcase_02 AC 37 ms
52,404 KB
testcase_03 AC 37 ms
53,772 KB
testcase_04 AC 38 ms
52,736 KB
testcase_05 AC 35 ms
53,072 KB
testcase_06 AC 37 ms
53,016 KB
testcase_07 AC 36 ms
52,124 KB
testcase_08 AC 36 ms
52,812 KB
testcase_09 AC 36 ms
52,680 KB
testcase_10 AC 130 ms
76,888 KB
testcase_11 AC 82 ms
75,880 KB
testcase_12 AC 97 ms
76,040 KB
testcase_13 AC 77 ms
75,624 KB
testcase_14 AC 41 ms
58,940 KB
testcase_15 AC 92 ms
76,044 KB
testcase_16 AC 105 ms
76,296 KB
testcase_17 AC 120 ms
77,188 KB
testcase_18 AC 115 ms
76,744 KB
testcase_19 AC 103 ms
76,396 KB
testcase_20 AC 44 ms
66,848 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 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:
        wl = [i for i in wl if i > cidx]
        wlen = len(wl)
        if wlen < 2:
            break
        res += combi(wlen)
    print(res)

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