結果
問題 | No.2379 Burnside's Theorem |
ユーザー | Anh Nguyễn Bảo |
提出日時 | 2023-07-14 22:55:19 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 458 bytes |
コンパイル時間 | 1,656 ms |
コンパイル使用メモリ | 167,464 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-16 08:01:11 |
合計ジャッジ時間 | 2,536 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 20 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; ll n; int uocnt=0; int main() { ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); //freopen("main.inp","r",stdin); //freopen("main.out","w",stdout); cin>>n; for(int i=2;i<=sqrt(n);i++) { if(n%i==0) { uocnt++; while(n%i==0) n/=i; } } if(n>1) uocnt++; cout<<(uocnt<3?"Yes":"No"); return 0; }