結果

問題 No.2723 Fortune-telling by Flowers
ユーザー MasKoaTSMasKoaTS
提出日時 2024-03-29 15:26:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 87,220 KB
最終ジャッジ日時 2024-09-30 15:03:11
合計ジャッジ時間 2,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,444 KB
testcase_01 AC 67 ms
74,192 KB
testcase_02 AC 103 ms
76,728 KB
testcase_03 AC 98 ms
77,440 KB
testcase_04 AC 137 ms
77,728 KB
testcase_05 AC 64 ms
87,220 KB
testcase_06 AC 36 ms
56,064 KB
testcase_07 AC 65 ms
82,808 KB
testcase_08 AC 64 ms
82,856 KB
testcase_09 AC 105 ms
76,800 KB
testcase_10 AC 66 ms
75,564 KB
testcase_11 AC 63 ms
75,008 KB
testcase_12 AC 67 ms
76,544 KB
testcase_13 AC 69 ms
80,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def solve(n, s):
    x = 0
    for ss in s.split('-'):
        if(len(ss) == 0):
            continue
        if(ss[0] == 'K' or ss[-1] == 'K'):
            x += 1
        if(ss[0] == 'P' or ss[-1] == 'P'):
            x -= 1
    if(x >= 0):
        return 'K'
    return 'P'

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