結果

問題 No.2723 Fortune-telling by Flowers
ユーザー yansi819yansi819
提出日時 2024-05-31 05:34:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 419 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 121,436 KB
最終ジャッジ日時 2024-12-20 21:44:05
合計ジャッジ時間 3,855 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 124 ms
76,688 KB
testcase_02 AC 171 ms
76,672 KB
testcase_03 AC 401 ms
77,504 KB
testcase_04 AC 419 ms
77,392 KB
testcase_05 AC 54 ms
61,100 KB
testcase_06 AC 119 ms
98,180 KB
testcase_07 AC 114 ms
105,260 KB
testcase_08 AC 116 ms
105,256 KB
testcase_09 AC 158 ms
76,640 KB
testcase_10 AC 124 ms
76,640 KB
testcase_11 AC 97 ms
77,012 KB
testcase_12 AC 116 ms
94,720 KB
testcase_13 AC 159 ms
121,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    S = input().rstrip()
    D = []
    k = S[0]
    cnt = 1
    for i in range(1, len(S)):
        if S[i] == k:
            cnt += 1
        else:
            D.append((k, cnt))
            k = S[i]
            cnt = 1
    D.append((k, cnt))
    K, P = 0, 0
    for k, cnt in D:
        if k == "K":
            K += 1
        elif k == "P":
            P += 1
    print("K" if K >= P else "P")
0