3 条题解

  • 1
    @ 2025-3-23 11:56:17

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

    int main(){ int n; cin>>n; if (n%15==0 )cout<<"YES"; else cout<<"NO";

    return 0;}

    • 0
      @ 2025-1-26 16:33:33
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	int n;	
      	cin>>n;
      	if(n%3==0&&n%5==0) cout<<"YES";
      	else cout<<"NO";
      	return 0;
      }
      
      • 0
        @ 2025-1-20 21:29:38

        #include <bits/stdc++.h> using namespace std; int main() { long long a; cin>>a; if(a%30&&a%50) { cout<<"YES"; } else { cout<<"NO"; } return 0; }

        • 1

        信息

        ID
        432
        时间
        1000ms
        内存
        128MiB
        难度
        2
        标签
        (无)
        递交数
        102
        已通过
        61
        上传者