답안 #339755

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
339755 2020-12-26T06:30:36 Z beksultan04 성질 급한 지학이 (IZhO13_crazy) C++14
0 / 100
1 ms 364 KB
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int,int>
#define OK puts("OK");
#define NO puts("NO");
#define YES puts("YES");
#define fr first
#define sc second
#define ret return
#define scan1(a) scanf("%lld",&a);
#define scan2(a,b) scanf("%lld %lld",&a, &b);
#define scan3(a,b,c) scanf("%lld %lld %lld",&a,&b,&c);
#define all(s) s.begin(),s.end()
#define allr(s) s.rbegin(),s.rend()
#define pb push_back
#define sz(v) (int)v.size()
#define endi puts("");
const int N = 1e5+12,INF=1e9+7;
int q[N];
main(){
    int t;
    scan1(t)
    while (t--){
        int n,i,j,s=0;
        scan1(n)
        map<pii,bool> mp;
        bool f=1;
        for (i=1;i<=n;++i){
            int x,y=i;
            scan1(x)
            q[x]=i;
            if (i == 1)s = x;
        }
        if (s != q[q[s]])cout <<q[s]<<"\n";
        else cout <<"0\n";
    }
}

Compilation message

crazy.cpp:21:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   21 | main(){
      |      ^
crazy.cpp: In function 'int main()':
crazy.cpp:30:19: warning: unused variable 'y' [-Wunused-variable]
   30 |             int x,y=i;
      |                   ^
crazy.cpp:25:17: warning: unused variable 'j' [-Wunused-variable]
   25 |         int n,i,j,s=0;
      |                 ^
crazy.cpp:28:14: warning: unused variable 'f' [-Wunused-variable]
   28 |         bool f=1;
      |              ^
crazy.cpp:11:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   11 | #define scan1(a) scanf("%lld",&a);
      |                  ~~~~~^~~~~~~~~~~
crazy.cpp:23:5: note: in expansion of macro 'scan1'
   23 |     scan1(t)
      |     ^~~~~
crazy.cpp:11:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   11 | #define scan1(a) scanf("%lld",&a);
      |                  ~~~~~^~~~~~~~~~~
crazy.cpp:26:9: note: in expansion of macro 'scan1'
   26 |         scan1(n)
      |         ^~~~~
crazy.cpp:11:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   11 | #define scan1(a) scanf("%lld",&a);
      |                  ~~~~~^~~~~~~~~~~
crazy.cpp:31:13: note: in expansion of macro 'scan1'
   31 |             scan1(x)
      |             ^~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -