結果

問題 No.2723 Fortune-telling by Flowers
ユーザー MasKoaTSMasKoaTS
提出日時 2023-12-23 20:53:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-09-27 12:38:37
合計ジャッジ時間 2,474 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 84 ms
10,752 KB
testcase_03 AC 207 ms
11,520 KB
testcase_04 AC 230 ms
11,392 KB
testcase_05 AC 47 ms
15,732 KB
testcase_06 AC 29 ms
11,904 KB
testcase_07 AC 73 ms
16,768 KB
testcase_08 AC 74 ms
16,764 KB
testcase_09 AC 84 ms
10,880 KB
testcase_10 AC 76 ms
10,624 KB
testcase_11 AC 75 ms
10,880 KB
testcase_12 AC 70 ms
11,772 KB
testcase_13 AC 74 ms
14,148 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