結果

問題 No.2723 Fortune-telling by Flowers
ユーザー なえしらなえしら
提出日時 2024-04-12 21:56:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 136,188 KB
最終ジャッジ日時 2024-10-02 23:16:23
合計ジャッジ時間 3,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 105 ms
76,544 KB
testcase_02 AC 138 ms
76,672 KB
testcase_03 AC 349 ms
77,312 KB
testcase_04 AC 382 ms
77,952 KB
testcase_05 AC 61 ms
75,648 KB
testcase_06 AC 142 ms
108,520 KB
testcase_07 AC 174 ms
136,188 KB
testcase_08 AC 178 ms
135,860 KB
testcase_09 AC 141 ms
76,672 KB
testcase_10 AC 123 ms
77,440 KB
testcase_11 AC 101 ms
80,256 KB
testcase_12 AC 145 ms
114,688 KB
testcase_13 AC 173 ms
134,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def run_length_encoding(A):
  B = []
  for a in A:
    if B and B[-1][0] == a:
      B[-1][1] += 1
    else:
      B.append([a, 1])
  return B

for _ in range(T := int(input())):
  N = int(input())
  S = input()
  
  T = run_length_encoding(S)
  K = P = 0
  for c, l in T:
    if c == 'K': K += 1
    elif c == 'P': P += 1
  
  print('K' if K >= P else 'P')
0