• ORIGIN


    #include <bits/stdc++.h>
    //#define endl '
    '
    #define lose {printf("NO
    ");return;}
    #define win {printf("YES
    ");return;}
    #define all(A) (A).begin(),(A).end()
    #define FOR(I, A, B) for (int I = (A); I <= (B); ++I)
    #define PER(I, A, B) for (int I = (A); I >= (B); --I)
    #define DB(A) cout<<(A)<<endl
    #define lson k*2
    #define rson k*2+1
    #define fi first
    #define se second
    #define PB push_back
    #define Pair pair<int,int>
    #define MP make_pair
    #define ll long long
    #define ull unsigned long long
    //#define int ll
    using namespace std;
    #define DB1(args...) do { cout << #args << " : "; dbg(args); } while (0)
    void dbg() { std::cout << "  #
    "; }
    template<typename T, typename...Args>
    void dbg(T a, Args...args) { std::cout << a << ' '; dbg(args...); }
    template <typename T> void inline read(T &x) {
        int f = 1; x = 0; char s = getchar();
        while (s < '0' || s > '9') { if (s == '-') f = -1; s = getchar(); }
        while (s <= '9' && s >= '0') x = x * 10 + (s ^ 48), s = getchar();
        x *= f;
    }
    
    template <typename T> void print(T x) {
        if (x < 0) { putchar('-'); print(x); return ; }
        if (x >= 10) print(x / 10);
        putchar((x % 10) + '0');
    }
    
    //var
    const int maxn=2e5+10;
    const int MAX=1000;
    const int inf=0x3f3f3f3f;
    const int mod=1e9+7;
    //head
    int n,m;
    int a[maxn];
    int b[maxn];
    
    void solve()
    {
        read(n);read(m);
        FOR(i,1,n)
        {
            read(a[i]);
        }
        int ans=0;
        print(ans);
    }
    signed main()
    {
        // freopen("read.txt", "r", stdin);
        // freopen("ans.txt", "w", stdout);
        int TestCase = 1;
        //cin>>TestCase;
        while (TestCase--)
        {
            solve();
        }
    }
    
    
    
    from collections import defaultdict
    from itertools import accumulate
    import sys
    input = sys.stdin.readline
    '''
    for CASES in range(int(input())):
    n, m = map(int, input().split())
    n = int(input())
    A = list(map(int, input().split()))
    S = input().strip()
    sys.stdout.write(" ".join(map(str,ANS))+"
    ")
    '''
    inf = 100000000000000000  # 1e17
    mod = 998244353
    
    
  • 相关阅读:
    where whereis locate find 的用法
    linux小知识
    linux touch和vi建立的文件是什么文件类型的
    linux创建文件的四种方式(其实是两种,强行4种)
    Linux mount实际使用
    linux文件系统和目录树的关系
    hard link && symbolic link
    Ext2文件系统的特点
    android pm命令
    linux安装源文件(.tar.gz)
  • 原文地址:https://www.cnblogs.com/reshuffle/p/12330688.html
Copyright © 2020-2023  润新知