3 条题解

  • 0
    @ 2026-8-4 15:48:45

    #include <bits/stdc++.h> using namespace std;

    int main() { int a, b, c; cin >> a >> b ; c = a * b; if (c % 5 == 0) { cout << "yre "; } else { cout << "no";

    }
    
    
    return 0;
    

    }

    信息

    ID
    150
    时间
    1000ms
    内存
    64MiB
    难度
    8
    标签
    递交数
    320
    已通过
    54
    上传者