제출 #1043150

#제출 시각아이디문제언어결과실행 시간메모리
1043150ezGeometryTracks in the Snow (BOI13_tracks)C++14
2.19 / 100
424 ms16024 KiB
#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main() {
	int n, m;
	cin >> n >> m;

	bool f = false, r = false;

	for (int i = 0; i < n; i++) {
		for (int j = 0; j < m; j++) {
			char c;
			cin >> c;
			if (c == 'F') {
				f = true;
			}
			if (c == 'R') {
				r = true;
			}
		}
	}

	cout << (int)f + r << endl;

	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...