結果
| 問題 | No.279 木の数え上げ |
| コンテスト | |
| ユーザー |
bellangeldindon
|
| 提出日時 | 2017-06-03 14:01:59 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 230 bytes |
| 記録 | |
| コンパイル時間 | 219 ms |
| コンパイル使用メモリ | 77,464 KB |
| 最終ジャッジ日時 | 2025-12-03 23:55:51 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | MLE * 21 |
ソースコード
def smaller(x, y): if x < y: return x else: return y s = raw_input() t = 0 r = 0 e = 0 for i in range(0, len(s)): if s == 't': t += 1 elif s == 'r': r += 1 elif s == 'e': e += 1 print smaller(smaller(t, r), e/2)
bellangeldindon