# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1154596 | salmon | Hop (COCI21_hop) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
using namespace std;
int N;
int ans[1100][1100];
int main(){
scanf(" %d",&N);
for(int i = 0; i < N; i++){
for(int j = 0; j < i; j++){
printf("%d ",i%3+1);
}
printf("\n");
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |