結果
問題 | No.2721 "Don't say N" Game |
ユーザー | MasKoaTS |
提出日時 | 2023-09-28 18:28:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 403 ms / 2,000 ms |
コード長 | 450 bytes |
コンパイル時間 | 2,205 ms |
コンパイル使用メモリ | 206,564 KB |
実行使用メモリ | 45,948 KB |
最終ジャッジ日時 | 2024-07-26 15:12:32 |
合計ジャッジ時間 | 5,375 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 388 ms
45,816 KB |
testcase_01 | AC | 386 ms
45,944 KB |
testcase_02 | AC | 403 ms
45,816 KB |
testcase_03 | AC | 403 ms
45,812 KB |
testcase_04 | AC | 386 ms
45,940 KB |
testcase_05 | AC | 385 ms
45,948 KB |
ソースコード
#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; }