結果

問題 No.279 木の数え上げ
ユーザー jjwattjjwatt
提出日時 2020-03-26 10:50:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 268 bytes
コンパイル時間 805 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 32,664 KB
最終ジャッジ日時 2025-01-02 00:58:25
合計ジャッジ時間 34,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
16,800 KB
testcase_01 AC 30 ms
17,060 KB
testcase_02 AC 40 ms
16,932 KB
testcase_03 AC 28 ms
22,144 KB
testcase_04 AC 28 ms
16,932 KB
testcase_05 AC 38 ms
26,328 KB
testcase_06 AC 28 ms
16,928 KB
testcase_07 AC 33 ms
21,504 KB
testcase_08 AC 41 ms
16,800 KB
testcase_09 AC 27 ms
30,008 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

x=list(input())
count=0
y=[]
y_append=y.append
for i in x:
    y_append(i)
    if "t" in y and "r" in y and y.count("e")>1:
        count+=1
        y.remove("t")
        y.remove("r")
        y.remove("e")
        y.remove("e")
    else:
        continue
print(count)
0