# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
57430 | 2018-07-15T03:13:07 Z | duma3803 | 줄서기 (KOI17_line) | C++14 | 2 ms | 376 KB |
#include <bits/stdc++.h> using namespace std; int n; int arr[10]; int main() { int i; scanf("%d",&n); for (i=0;i<n;i++) arr[i] = i+1; // arr는 1, 2, 3, 4, ... , n do { for (i=0;i<n;i++) printf("%d ",arr[i]); printf("\n"); } while(next_permutation(arr,arr+n)); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |