結果
| 問題 | No.279 木の数え上げ |
| コンテスト | |
| ユーザー |
jjwatt
|
| 提出日時 | 2020-03-26 10:41:23 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 250 bytes |
| 記録 | |
| コンパイル時間 | 534 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 29,488 KB |
| 最終ジャッジ日時 | 2026-06-05 18:30:02 |
| 合計ジャッジ時間 | 5,496 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 TLE * 1 -- * 10 |
ソースコード
x=list(input())
count=0
y=[]
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