結果
問題 | No.2379 Burnside's Theorem |
ユーザー | Ywestbuilderk |
提出日時 | 2024-01-23 16:24:13 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 255 bytes |
コンパイル時間 | 2,170 ms |
コンパイル使用メモリ | 206,488 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-28 06:47:21 |
合計ジャッジ時間 | 3,063 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 3 |
other | AC * 5 WA * 15 |
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long signed main(){ int n; cin >> n; map<int,int> m; for(int i = 2;i * i <= n;i++){ while(n % i == 0){ m[i]++; n /= i; } } if(m.size() == 2) cout << "Yes"; else cout << "No"; }