제출 #833597

#제출 시각아이디문제언어결과실행 시간메모리
833597vjudge1Bomb (IZhO17_bomb)C++17
0 / 100
293 ms6744 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]; ll mins,temp,mins1; 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...