結果

問題 No.279 木の数え上げ
ユーザー mannshi222mannshi222
提出日時 2022-04-24 17:58:51
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 339 bytes
コンパイル時間 617 ms
コンパイル使用メモリ 71,328 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-26 04:51:53
合計ジャッジ時間 1,605 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,948 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 6 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 5 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 18 ms
6,944 KB
testcase_16 AC 17 ms
6,944 KB
testcase_17 AC 21 ms
6,944 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:24:14: warning: 'e' may be used uninitialized [-Wmaybe-uninitialized]
   24 |         e = e/2;
      |             ~^~
main.cpp:8:19: note: 'e' was declared here
    8 |         int t, r, e;
      |                   ^
main.cpp:8:16: warning: 'r' may be used uninitialized [-Wmaybe-uninitialized]
    8 |         int t, r, e;
      |                ^
main.cpp:8:13: warning: 't' may be used uninitialized [-Wmaybe-uninitialized]
    8 |         int t, r, e;
      |             ^

ソースコード

diff #

#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
	int t, r, e;
	char S[1000000];
	cin >> S;
	for( int i = 0; S[i] != '\0'; i++ ) {
		switch( S[i] ) {
		case 't':
			t++;
			break;
		case 'r':
			r++;
			break;
		case 'e':
			e++;
			break;
		}
	}
	e = e/2;
	cout << min( min( t, r ) , e ) << endl;

	return 0;
}
0