結果

問題 No.2723 Fortune-telling by Flowers
ユーザー yu_w(ゆ)yu_w(ゆ)
提出日時 2024-04-12 21:56:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,536 KB
最終ジャッジ日時 2024-10-02 23:16:55
合計ジャッジ時間 2,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 95 ms
76,544 KB
testcase_02 AC 129 ms
76,672 KB
testcase_03 AC 354 ms
78,208 KB
testcase_04 AC 324 ms
76,916 KB
testcase_05 AC 87 ms
97,408 KB
testcase_06 AC 96 ms
97,536 KB
testcase_07 AC 97 ms
97,152 KB
testcase_08 AC 97 ms
97,280 KB
testcase_09 AC 130 ms
76,544 KB
testcase_10 AC 109 ms
77,184 KB
testcase_11 AC 82 ms
75,520 KB
testcase_12 AC 87 ms
82,836 KB
testcase_13 AC 93 ms
89,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    N=int(input())
    S=list(input())

    last = "-"
    p,k = 0,0
    for i in S:
        if last == i:
            continue
        last = i
        if i == "P":
            p += 1
        elif i == "K":
            k += 1
    
    if p<=k:
        print("K")
    else:
        print("P")
0