結果

問題 No.2723 Fortune-telling by Flowers
ユーザー pitPpitP
提出日時 2024-04-12 21:46:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 151,964 KB
最終ジャッジ日時 2024-10-02 23:11:39
合計ジャッジ時間 3,292 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 102 ms
76,800 KB
testcase_02 AC 156 ms
76,604 KB
testcase_03 AC 368 ms
77,824 KB
testcase_04 AC 403 ms
78,132 KB
testcase_05 AC 79 ms
97,280 KB
testcase_06 AC 154 ms
128,564 KB
testcase_07 AC 190 ms
151,844 KB
testcase_08 AC 190 ms
151,964 KB
testcase_09 AC 156 ms
76,968 KB
testcase_10 AC 126 ms
77,232 KB
testcase_11 AC 103 ms
79,296 KB
testcase_12 AC 143 ms
114,220 KB
testcase_13 AC 192 ms
149,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    S = list(input())

    now = S[0]
    cnt = 1
    dat = []
    for i in range(1, N):
        if S[i] != now:
            dat.append([now, cnt])
            cnt = 1
            now = S[i]
        else:
            cnt += 1
    dat.append([now, cnt])
    # print(dat)

    cntp, cntk = 0, 0
    for c, _ in dat:
        if c == 'P':
            cntp += 1
        if c == 'K':
            cntk += 1
    
    print("K" if cntp <= cntk else "P")
0