結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,204 KB
testcase_01 AC 106 ms
76,476 KB
testcase_02 AC 137 ms
76,904 KB
testcase_03 AC 323 ms
77,584 KB
testcase_04 AC 341 ms
77,372 KB
testcase_05 AC 41 ms
63,144 KB
testcase_06 AC 100 ms
98,188 KB
testcase_07 AC 121 ms
105,496 KB
testcase_08 AC 98 ms
104,784 KB
testcase_09 AC 134 ms
76,692 KB
testcase_10 AC 104 ms
76,908 KB
testcase_11 AC 81 ms
77,108 KB
testcase_12 AC 96 ms
94,776 KB
testcase_13 AC 135 ms
121,836 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