1 条题解

  • 1
    @ 2026-8-1 13:35:03

    依旧数组

    #include <bits/stdc++.h>
    using namespace std;
    #define ll long long
    ll a[3];
    int main()
    {
        ios::sync_with_stdio(0);
        cin.tie(0);
        cout.tie(0);
        for (ll i=1; i<=3; i++) {
            cin>>a[i];
        }
        cout<<20-(a[1]+a[2]+a[3]);
        return 0;
    }
    ``

    信息

    ID
    136
    时间
    1000ms
    内存
    64MiB
    难度
    1
    标签
    递交数
    63
    已通过
    58
    上传者