1 条题解

  • 3
    @ 2026-6-3 22:46:03
    #include <bits/stdc++.h>
    using namespace std;
    int main() {
    long long n;
        cin >> n;
        if (n % 3 == 0) {
            cout << "lose" << endl;
        } else {
            cout << "win" << endl;
        }
        return 0;
    }
        
    
    
    • 1

    信息

    ID
    30993
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    (无)
    递交数
    22
    已通过
    16
    上传者