結果
問題 | No.2721 "Don't say N" Game |
ユーザー | detteiuu |
提出日時 | 2024-04-12 21:23:53 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 86 ms / 2,000 ms |
コード長 | 355 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 69,376 KB |
最終ジャッジ日時 | 2024-10-02 22:57:12 |
合計ジャッジ時間 | 1,181 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
51,968 KB |
testcase_01 | AC | 86 ms
68,736 KB |
testcase_02 | AC | 84 ms
69,376 KB |
testcase_03 | AC | 82 ms
68,480 KB |
testcase_04 | AC | 70 ms
63,616 KB |
testcase_05 | AC | 84 ms
68,736 KB |
ソースコード
T = int(input()) def divisor(n): ans = [] for i in range(1, int(n**0.5)+1): if n % i == 0: ans.append(i) if i*i != n: ans.append(n//i) return sorted(ans) ans = [] for i in range(T): N = int(input()) D = divisor(N) if len(D) % 2 == 1: print("P") else: print("K")