結果
問題 | No.279 木の数え上げ |
ユーザー | con |
提出日時 | 2018-11-19 15:11:27 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 102 ms / 2,000 ms |
コード長 | 518 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 20,148 KB |
最終ジャッジ日時 | 2024-12-24 15:16:35 |
合計ジャッジ時間 | 2,877 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,496 KB |
testcase_01 | AC | 27 ms
10,496 KB |
testcase_02 | AC | 28 ms
10,368 KB |
testcase_03 | AC | 27 ms
10,368 KB |
testcase_04 | AC | 28 ms
10,496 KB |
testcase_05 | AC | 25 ms
10,496 KB |
testcase_06 | AC | 25 ms
10,368 KB |
testcase_07 | AC | 27 ms
10,496 KB |
testcase_08 | AC | 29 ms
10,496 KB |
testcase_09 | AC | 26 ms
10,368 KB |
testcase_10 | AC | 98 ms
19,500 KB |
testcase_11 | AC | 43 ms
12,288 KB |
testcase_12 | AC | 76 ms
16,116 KB |
testcase_13 | AC | 35 ms
11,392 KB |
testcase_14 | AC | 102 ms
20,148 KB |
testcase_15 | AC | 91 ms
17,740 KB |
testcase_16 | AC | 83 ms
17,164 KB |
testcase_17 | AC | 99 ms
18,820 KB |
testcase_18 | AC | 62 ms
14,648 KB |
testcase_19 | AC | 94 ms
18,596 KB |
testcase_20 | AC | 101 ms
19,132 KB |
ソースコード
S=list(input()) t=S.count("t") r=S.count("r") e=S.count("e") e=e//2 if (t>=r) : if (r>=e) : print(e) else: print(r) elif (r>t) : if (t>e) : print(e) else: print(t) elif (r>=e) : if (e>=t) : print(t) else: print(e) elif (e>r) : if (r>t) : print(t) else: print(r) elif (t>=e) : if (e>=r) : print(r) else: print(e) elif (e>t) : if (t>r) : print(r) else: print(t) else: pass