結果

問題 No.279 木の数え上げ
ユーザー bellangeldindonbellangeldindon
提出日時 2017-06-03 14:03:32
言語 Python2
(2.7.18)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 39,024 KB
最終ジャッジ日時 2024-09-22 04:29:28
合計ジャッジ時間 3,302 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 11 ms
6,944 KB
testcase_02 AC 10 ms
6,940 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 10 ms
6,944 KB
testcase_05 AC 11 ms
6,940 KB
testcase_06 AC 10 ms
6,940 KB
testcase_07 AC 11 ms
6,940 KB
testcase_08 AC 11 ms
6,944 KB
testcase_09 AC 10 ms
6,944 KB
testcase_10 AC 276 ms
36,596 KB
testcase_11 AC 69 ms
12,928 KB
testcase_12 AC 190 ms
26,928 KB
testcase_13 AC 42 ms
9,856 KB
testcase_14 AC 293 ms
39,024 KB
testcase_15 AC 246 ms
33,096 KB
testcase_16 AC 227 ms
30,816 KB
testcase_17 AC 278 ms
36,840 KB
testcase_18 AC 148 ms
21,992 KB
testcase_19 AC 270 ms
36,000 KB
testcase_20 AC 293 ms
38,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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[i] == 't':
		t += 1
	elif s[i] == 'r':
		r += 1
	elif s[i] == 'e':
		e += 1

print smaller(smaller(t, r), e/2)
0