結果
| 問題 | No.279 木の数え上げ |
| コンテスト | |
| ユーザー |
rocoder
|
| 提出日時 | 2017-06-04 17:20:16 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 213 bytes |
| 記録 | |
| コンパイル時間 | 544 ms |
| コンパイル使用メモリ | 20,572 KB |
| 実行使用メモリ | 23,924 KB |
| 最終ジャッジ日時 | 2026-04-10 11:32:57 |
| 合計ジャッジ時間 | 5,618 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 21 |
ソースコード
S=list(input())
t=0
r=0
e=0
for i in range(len(S)):
if S[i]=="t":
t+=1
elif S[i]=="r":
r+=1
elif S[i]=="e":
e+=1
t*=2
r*=2
m=t
if m>r:
m=r
if m>e:
m=e
print (e)
rocoder