結果
問題 | No.2721 "Don't say N" Game |
ユーザー | haihamabossu |
提出日時 | 2024-04-12 21:32:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 592 bytes |
コンパイル時間 | 1,945 ms |
コンパイル使用メモリ | 201,388 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 23:02:07 |
合計ジャッジ時間 | 2,398 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i, n) for (int i = 0; i < (int)(n); i++) ll cnt[1010]; void precalc() { for (ll i = 1; i <= 1000; i++) { for (ll j = 1; j * j <= i; j++) { if (i % j) continue; cnt[i]++; if (i / j != j) cnt[i]++; } } } void solve() { ll n; cin >> n; cout << (cnt[n] % 2 ? 'P' : 'K') << '\n'; } int main() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); int T = 1; cin >> T; precalc(); for (int t = 0; t < T; t++) { solve(); } return 0; }