結果

問題 No.2723 Fortune-telling by Flowers
ユーザー hitonanodehitonanode
提出日時 2024-04-12 22:43:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 101,824 KB
最終ジャッジ日時 2024-10-02 23:35:44
合計ジャッジ時間 2,817 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 96 ms
76,476 KB
testcase_02 AC 137 ms
76,636 KB
testcase_03 AC 180 ms
81,516 KB
testcase_04 AC 216 ms
81,964 KB
testcase_05 AC 64 ms
72,224 KB
testcase_06 AC 110 ms
93,936 KB
testcase_07 AC 122 ms
101,824 KB
testcase_08 AC 121 ms
101,468 KB
testcase_09 AC 139 ms
76,544 KB
testcase_10 AC 113 ms
75,940 KB
testcase_11 AC 97 ms
75,720 KB
testcase_12 AC 106 ms
84,864 KB
testcase_13 AC 121 ms
98,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby

ret = []

for _ in range(int(input())):
    input()
    cs = [c for c, _ in groupby(input())]
    ret.append('P' if cs.count('P') > cs.count('K') else 'K')

print('\n'.join(ret))
0