結果
| 問題 | No.279 木の数え上げ |
| コンテスト | |
| ユーザー |
jjwatt
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 TLE * 11 |
ソースコード
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)
jjwatt