제출 #1295221

#제출 시각아이디문제언어결과실행 시간메모리
1295221hasanTracks in the Snow (BOI13_tracks)C++20
0 / 100
22 ms18204 KiB
#include <bits/stdc++.h>
using namespace std;

#define endl '\n'
#define int int_fast64_t
#define ul uint_fast32_t
#define ll int_fast64_t
#define dll long double
#define ull uint_fast64_t
#define spektar this_thread::sleep_for(chrono::milliseconds(1000))

void solve(){
    int n,m;
    cin >> n >> m;
    vector<string> k(n);
    for(int i=0; i<n; i++) cin >> k[i];
    cout << 3 << endl;
}

signed main(){
    //freopen("input.txt","r",stdin);
    //freopen("output.txt","w",stdout);
    
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);

    int t=1;
    //cin >> t;
    while(t--){
        solve();
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...