제출 #1355062

#제출 시각아이디문제언어결과실행 시간메모리
1355062mxhrvsMonster-Go (EGOI25_monstergo)C++20
2 / 100
0 ms344 KiB
#include<bits/stdc++.h>
using namespace std;

int main() {
    int n;
    cin >> n;

    
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < 12; j++) {
            cout << (i + j) % 50 << " ";
        }
        cout << endl;
    }

    return 0;
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…