結果

問題 No.2723 Fortune-telling by Flowers
ユーザー rlangevinrlangevin
提出日時 2024-04-12 21:38:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-10-02 23:06:59
合計ジャッジ時間 2,078 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 75 ms
74,240 KB
testcase_02 AC 136 ms
77,312 KB
testcase_03 AC 117 ms
76,636 KB
testcase_04 AC 167 ms
77,440 KB
testcase_05 AC 58 ms
76,672 KB
testcase_06 AC 67 ms
75,904 KB
testcase_07 AC 69 ms
76,416 KB
testcase_08 AC 68 ms
76,544 KB
testcase_09 AC 134 ms
76,928 KB
testcase_10 AC 78 ms
74,880 KB
testcase_11 AC 70 ms
75,008 KB
testcase_12 AC 68 ms
75,264 KB
testcase_13 AC 68 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def solve(s):
    k, p = 0, 0
    s += "-"
    N = len(s)
    for i in range(N - 1):
        if s[i] != s[i + 1] and s[i] != "-":
            if s[i] == "K":
                k += 1
            else:
                p += 1
    return k >= p

T = int(input())
for _ in range(T):
    N = int(input())
    if solve(input().rstrip()):
        print("K")
    else:
        print("P")
0