제출 #1360953

#제출 시각아이디문제언어결과실행 시간메모리
1360953yyc000123Monster-Go (EGOI25_monstergo)C++20
8 / 100
0 ms344 KiB
#include<bits/stdc++.h>
using namespace std ;
const int N = 55 ;
int n ;

int main(){
    ios::sync_with_stdio(0),cin.tie(0),cout.tie(0) ;
    cin >> n ;
    for(int i=0 ; i<n ; i++){
        for(int j=0 ; j<12 ; j++) cout << 12*i+j << ' ' ;
        cout << '\n' ;
    }
    return 0 ;
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…