結果
問題 | No.2723 Fortune-telling by Flowers |
ユーザー | hato336 |
提出日時 | 2024-04-12 21:54:58 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 195 ms / 2,000 ms |
コード長 | 507 bytes |
コンパイル時間 | 371 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 147,660 KB |
最終ジャッジ日時 | 2024-10-02 23:15:32 |
合計ジャッジ時間 | 2,769 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
51,968 KB |
testcase_01 | AC | 83 ms
76,032 KB |
testcase_02 | AC | 118 ms
76,288 KB |
testcase_03 | AC | 141 ms
77,176 KB |
testcase_04 | AC | 162 ms
77,500 KB |
testcase_05 | AC | 90 ms
97,024 KB |
testcase_06 | AC | 149 ms
119,992 KB |
testcase_07 | AC | 192 ms
147,272 KB |
testcase_08 | AC | 194 ms
147,660 KB |
testcase_09 | AC | 112 ms
76,672 KB |
testcase_10 | AC | 111 ms
76,288 KB |
testcase_11 | AC | 107 ms
78,592 KB |
testcase_12 | AC | 162 ms
119,740 KB |
testcase_13 | AC | 195 ms
145,044 KB |
ソースコード
import sys input = sys.stdin.readline for i in range(int(input())): n = int(input()) s = list(input().rstrip()) def rle(s): res = [] for j in s: if not res or res[-1][0] != j: res.append([j,1]) else: res[-1][1] += 1 return res p,k = 0,0 x = rle(s) for j,z in x: if j == 'P': p += 1 if j == 'K': k += 1 if p > k: print('P') else: print('K')