結果

問題 No.2723 Fortune-telling by Flowers
ユーザー MasKoaTSMasKoaTS
提出日時 2023-12-20 23:06:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 87,084 KB
最終ジャッジ日時 2024-09-27 14:34:36
合計ジャッジ時間 1,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


def solve(n, s):
    score = 0
    for ss in s.split('-'):
        if not(ss):
            continue
        lis = [ss[0], ss[-1]]
        score += ('K' in lis) - ('P' in lis)
    return 'K' if(score >= 0) else 'P'


t = int(input())
for _ in [0] * t:
    n = int(input())
    s = input()[:-1]
    print(solve(n, s))
0