結果

問題 No.2723 Fortune-telling by Flowers
ユーザー PNJPNJ
提出日時 2024-04-12 21:38:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 78,736 KB
最終ジャッジ日時 2024-10-02 23:06:52
合計ジャッジ時間 2,987 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 153 ms
77,824 KB
testcase_02 AC 230 ms
78,736 KB
testcase_03 AC 364 ms
77,952 KB
testcase_04 AC 436 ms
78,424 KB
testcase_05 AC 48 ms
61,312 KB
testcase_06 AC 56 ms
63,488 KB
testcase_07 AC 64 ms
65,920 KB
testcase_08 AC 63 ms
66,048 KB
testcase_09 AC 225 ms
78,608 KB
testcase_10 AC 124 ms
76,652 KB
testcase_11 AC 79 ms
72,576 KB
testcase_12 AC 75 ms
71,680 KB
testcase_13 AC 75 ms
71,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
  N = int(input())
  S = input()
  P,K,T = 0,0,0
  f,s,g = 0,0,0
  for i in range(N):
    if f == 0:
      if S[i] != '-':
        if S[i] == 'P':
          s = 1
          g = 1
        else:
          s = 2
          g = 2
        f = 1
    else:
      if S[i] == '-':
        if s == g:
          if s == 1:
            P += 1
          else:
            K += 1
        else:
          T += 1
        f = 0
      elif S[i] == 'P':
        g = 1
      else:
        g = 2
  if f:
    if s != g:
      T += 1
    else:
      if s == 1:
        P += 1
      else:
        K += 1
  if K >= P:
    print('K')
  else:
    print('P')
0