hungtd
Rating
-
Bài tập
74
Điểm
11454
Rating #
-
Điểm #
4335
Trần Đức Hùng (Newton Grammar)
Giới thiệu
English or Spanish?
Don't Move!
YOU MOVED SO YOU'RE G@Y
Code for a problem(hope you can find it):
#include<bits/stdc++.h>
using namespace std;
#define ll long long
bool is_prime(ll n) {
if (n <= 1) {
return false;
}
if (n <= 3) {
return true;
}
if (n % 2 == 0 || n % 3 == 0) {
return false;
}
ll i = 5;
while (i * i <= n) {
if (n % i == 0 || n % (i + 2) == 0) {
return false;
}
i += 6;
}
return true;
}
signed main() {
ll n;
cin >> n;
if (is_prime(n)) {
cout << "YES" << "\n";
} else {
cout << "NO" << "\n";
}
Also, check out my CDOJ, DMOJ profile:
CDOJ: https://oj.codedream.edu.vn/user/newton7
DMOJ: https://dmoj.ca/user/hungtd