제출 #1175629

#제출 시각아이디문제언어결과실행 시간메모리
1175629tanchyaMecho (IOI09_mecho)C++20
4 / 100
41 ms1144 KiB
#include<bits/stdc++.h> using namespace std; int main(){ int n,s; cin>>n>>s; vector<vector<char>> v(n,vector<char>(n)); for (int i = 0;i<n;i++){ for(int j = 0;j<n;j++){ cin>>v[i][j]; } } cout<<-1; }
#Verdict Execution timeMemoryGrader output
Fetching results...