結果
| 問題 |
No.279 木の数え上げ
|
| コンテスト | |
| ユーザー |
funakoshi
|
| 提出日時 | 2019-08-19 17:34:27 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 8 ms / 2,000 ms |
| コード長 | 554 bytes |
| コンパイル時間 | 399 ms |
| コンパイル使用メモリ | 29,568 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-04 16:25:11 |
| 合計ジャッジ時間 | 1,835 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
ソースコード
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
int main(void)
{
char str[1000000]="";
int t=0,r=0,e=0,cnt=0;
scanf("%s",str);
for(int i=0;i<strlen(str);i++)
{
if(str[i]=='t')
{
t++;
}
else if(str[i]=='r')
{
r++;
}
else if(str[i]=='e')
{
e++;
}
while(t>0&&r>0&&e>1)
{
cnt++;
t--;
r--;
e-=2;
}
}
printf("%d",cnt);
}
funakoshi