結果

問題 No.2723 Fortune-telling by Flowers
ユーザー ゼットゼット
提出日時 2024-04-12 21:40:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-10-02 23:07:39
合計ジャッジ時間 3,179 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 150 ms
77,316 KB
testcase_02 AC 207 ms
78,480 KB
testcase_03 AC 381 ms
77,568 KB
testcase_04 AC 389 ms
77,496 KB
testcase_05 AC 63 ms
65,152 KB
testcase_06 AC 74 ms
67,200 KB
testcase_07 AC 90 ms
75,520 KB
testcase_08 AC 88 ms
74,240 KB
testcase_09 AC 212 ms
78,252 KB
testcase_10 AC 163 ms
77,056 KB
testcase_11 AC 115 ms
76,544 KB
testcase_12 AC 111 ms
78,988 KB
testcase_13 AC 119 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
for _ in range(Q):
  N=int(input())
  S=input()
  x=0
  y=0
  used=[False]*N
  for i in range(N):
    if used[i]==True:
      continue
    if S[i]=='-':
      continue
    r=N-1
    used[i]=True
    for j in range(i+1,N):
      if S[j]=='-':
        r=j-1
        break
      used[j]=True
    if S[i]=='P' and S[r]=='P':
      y+=1
    if S[i]=='K' and S[r]=='K':
      x+=1
  if x>=y:
    print('K')
  else:
    print('P')
0