結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,824 KB
testcase_01 AC 68 ms
76,088 KB
testcase_02 AC 106 ms
76,600 KB
testcase_03 AC 112 ms
77,616 KB
testcase_04 AC 141 ms
78,120 KB
testcase_05 AC 67 ms
87,084 KB
testcase_06 AC 38 ms
56,724 KB
testcase_07 AC 69 ms
82,344 KB
testcase_08 AC 68 ms
83,012 KB
testcase_09 AC 105 ms
76,524 KB
testcase_10 AC 73 ms
75,496 KB
testcase_11 AC 64 ms
74,660 KB
testcase_12 AC 62 ms
75,280 KB
testcase_13 AC 65 ms
77,464 KB
権限があれば一括ダウンロードができます

ソースコード

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