結果
問題 | No.2721 "Don't say N" Game |
ユーザー | ooaiu |
提出日時 | 2024-07-03 19:19:44 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 606 bytes |
コンパイル時間 | 2,990 ms |
コンパイル使用メモリ | 245,204 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-03 19:19:49 |
合計ジャッジ時間 | 3,382 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; using ld = long double; #ifdef LOCAL #include <algo/debug.h> #else #define debug(...) void(0) #endif int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int T; cin >> T; const int N = 1000; vector<int> cnt(N + 1, 0); for(int i = 1; i <= N; i++) { for(int j = i; j <= N; j+=i) { cnt[j]++; } } debug(cnt); while(T--) { int n; cin >> n; if(cnt[n] % 2) { cout << "P" << endl; }else { cout << "K" << endl; } } }