Submission #555860

#TimeUsernameProblemLanguageResultExecution timeMemory
555860bluePipes (BOI13_pipes)C++17
35 / 100
1 ms340 KiB
#include <iostream>
#include <vector>
using namespace std;

using ll = long long;
using vi = vector<int>;

int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	int N, M;
	cin >> N >> M;

	if(M > N)
	{
		cout << "0\n";
		return 0;
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...