結果
問題 |
No.2721 "Don't say N" Game
|
ユーザー |
![]() |
提出日時 | 2023-09-28 18:28:06 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 452 ms / 2,000 ms |
コード長 | 450 bytes |
コンパイル時間 | 2,104 ms |
コンパイル使用メモリ | 199,888 KB |
最終ジャッジ日時 | 2025-02-17 02:48:45 |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 5 |
ソースコード
#include <bits/stdc++.h> #define inf 1000000000ll using namespace std; using ll = long long; int main(){ int t; cin >> t; unordered_set<ll> st = {}; for(ll i = 1; i <= 1000000ll; ++i){ st.insert(i * i); } for(int i = 0; i < t; ++i){ ll n; cin >> n; if(st.find(n) != st.end()){ cout << 'P' << endl; } else{ cout << 'K' << endl; } } return 0; }