結果

問題 No.2723 Fortune-telling by Flowers
ユーザー flygonflygon
提出日時 2024-04-12 22:53:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 99,812 KB
最終ジャッジ日時 2024-10-02 23:39:40
合計ジャッジ時間 2,871 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,952 KB
testcase_01 AC 98 ms
76,960 KB
testcase_02 AC 138 ms
77,088 KB
testcase_03 AC 335 ms
77,448 KB
testcase_04 AC 364 ms
77,524 KB
testcase_05 AC 46 ms
62,020 KB
testcase_06 AC 77 ms
89,692 KB
testcase_07 AC 87 ms
91,156 KB
testcase_08 AC 89 ms
91,472 KB
testcase_09 AC 148 ms
77,104 KB
testcase_10 AC 108 ms
76,984 KB
testcase_11 AC 85 ms
76,120 KB
testcase_12 AC 93 ms
82,400 KB
testcase_13 AC 114 ms
99,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

for i in range(t):
    n = int(input())
    s = "-" + input().rstrip()
    d = []
    for i in range(1,n+1):
        if s[i] == "-": continue
        if s[i-1] == "-":
            d.append([s[i]])
        else:
            d[-1].append(s[i])
    
    k = 0
    p = 0
    for i in range(len(d)):
        k += d[i][0] == "K" and d[i][-1] == "K"
        p += d[i][0] == "P" and d[i][-1] == "P"
    
    if p > k:
        print("P")
    else:
        print("K")


0