답안 #1044706

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1044706 2024-08-05T12:36:49 Z Nickpapadak Kpart (eJOI21_kpart) C++14
0 / 100
0 ms 348 KB
#include<bits/stdc++.h>
using namespace std;
int T;

int main(){
    scanf("%d", &T);
    while(T--){
        int N;
        scanf("%d", &N);
        int a[N+1];
        for(int i =1;i<=N;++i)
            scanf("%d", &a[i]);
        if(N == 7) printf("2 4 6\n");
        else       printf("2 3 6");
    }
    return 0;
}

Compilation message

Main.cpp: In function 'int main()':
Main.cpp:6:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    6 |     scanf("%d", &T);
      |     ~~~~~^~~~~~~~~~
Main.cpp:9:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    9 |         scanf("%d", &N);
      |         ~~~~~^~~~~~~~~~
Main.cpp:12:18: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   12 |             scanf("%d", &a[i]);
      |             ~~~~~^~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -