結果
問題 | No.279 木の数え上げ |
ユーザー |
|
提出日時 | 2019-04-25 17:05:55 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 69 bytes |
コンパイル時間 | 316 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 13,440 KB |
最終ジャッジ日時 | 2024-11-20 19:37:57 |
合計ジャッジ時間 | 3,706 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 21 |
ソースコード
s=input();t=''for i in s:if i in 'tree': t+=iprint(len(t)//4)