結果

問題 No.2723 Fortune-telling by Flowers
ユーザー 👑 rin204rin204
提出日時 2024-04-12 22:48:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 396 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 86,652 KB
最終ジャッジ日時 2024-10-02 23:37:38
合計ジャッジ時間 2,870 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 118 ms
77,312 KB
testcase_02 AC 181 ms
77,648 KB
testcase_03 AC 342 ms
76,928 KB
testcase_04 AC 396 ms
77,312 KB
testcase_05 AC 74 ms
86,652 KB
testcase_06 AC 42 ms
55,552 KB
testcase_07 AC 71 ms
82,556 KB
testcase_08 AC 71 ms
82,048 KB
testcase_09 AC 183 ms
77,624 KB
testcase_10 AC 106 ms
76,200 KB
testcase_11 AC 68 ms
74,856 KB
testcase_12 AC 65 ms
75,904 KB
testcase_13 AC 71 ms
79,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    S = input()
    T = S.split("-")
    c = 0
    for t in T:
        if t == "":
            continue
        elif t[0] == t[-1]:
            if t[0] == "P":
                c += 1
            else:
                c -= 1
    return c > 0


for _ in range(int(input())):
    if solve():
        print("P")
    else:
        print("K")
0