結果
| 問題 |
No.279 木の数え上げ
|
| コンテスト | |
| ユーザー |
maspy
|
| 提出日時 | 2020-01-11 11:25:22 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 284 bytes |
| コンパイル時間 | 282 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 12,544 KB |
| 最終ジャッジ日時 | 2024-11-24 13:58:00 |
| 合計ジャッジ時間 | 2,899 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 20 |
ソースコード
import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines from collections import Counter S = read().rstrip().decode() counter = Counter(S) t,r,e = [counter[x] for x in 'tre'] ee = e // 2 answer = min(t,r,e) print(answer)
maspy