結果

問題 No.2723 Fortune-telling by Flowers
ユーザー detteiuudetteiuu
提出日時 2024-09-09 22:45:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 456 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 79,248 KB
最終ジャッジ日時 2024-09-09 22:45:27
合計ジャッジ時間 4,042 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,420 KB
testcase_01 AC 174 ms
77,548 KB
testcase_02 AC 254 ms
79,000 KB
testcase_03 AC 358 ms
77,944 KB
testcase_04 AC 456 ms
79,248 KB
testcase_05 AC 52 ms
63,496 KB
testcase_06 AC 61 ms
75,832 KB
testcase_07 AC 67 ms
76,424 KB
testcase_08 AC 68 ms
76,240 KB
testcase_09 AC 246 ms
78,600 KB
testcase_10 AC 125 ms
77,240 KB
testcase_11 AC 80 ms
75,496 KB
testcase_12 AC 80 ms
75,400 KB
testcase_13 AC 79 ms
76,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    N = int(input())
    S = input()
    k, p = 0, 0
    left = ""
    right = ""
    for i in range(N):
        if S[i] == "-":
            if i >= 1 and S[i-1] != "-":
                if left == "K" and right == "K":
                    k += 1
                elif left == "P" and right == "P":
                    p += 1
        else:
            right = S[i]
            if i == 0 or S[i-1] == "-":
                left = S[i]
    if S[-1] != "-":
        if left == "K" and right == "K":
            k += 1
        elif left == "P" and right == "P":
            p += 1
    if k >= p:
        print("K")
    else:
        print("P")
0