제출 #833602

#제출 시각아이디문제언어결과실행 시간메모리
833602vjudge1Bomb (IZhO17_bomb)C++17
5 / 100
217 ms6752 KiB
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define fi first
#define se second

const ll N = 2600;

ll n,m;
char a[N][N];
int main() {
	cin >> n >> m;
	for(int i=1; i<=n; i++) {
		for(int j=1; j<=m; j++) {
			cin >> a[i][j];
		}
	}
	srand(time(0));
	ll ans = rand() % 10;
	cout << ans << endl;
}
#Verdict Execution timeMemoryGrader output
Fetching results...