結果

問題 No.2723 Fortune-telling by Flowers
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-12 22:14:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 95,328 KB
最終ジャッジ日時 2024-10-02 23:23:21
合計ジャッジ時間 3,082 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 150 ms
77,056 KB
testcase_02 AC 182 ms
77,568 KB
testcase_03 AC 375 ms
77,696 KB
testcase_04 AC 429 ms
77,924 KB
testcase_05 AC 96 ms
95,328 KB
testcase_06 AC 52 ms
55,424 KB
testcase_07 AC 89 ms
82,944 KB
testcase_08 AC 83 ms
83,072 KB
testcase_09 AC 180 ms
77,568 KB
testcase_10 AC 123 ms
76,672 KB
testcase_11 AC 85 ms
75,136 KB
testcase_12 AC 84 ms
77,312 KB
testcase_13 AC 90 ms
82,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
	n = int(input())
	a = input().split("-")
	pp, pk, kk = 0, 0, 0
	for i in a:
		if len(i) == 0:
			continue
		if i[0] == 'P' and i[-1] == 'P':
			pp += 1
		elif i[0] == 'K' and i[-1] == 'K':
			kk += 1
		else:
			pk += 1
	kk += (pk + 1) // 2
	pp += pk // 2
	if pk % 2 == 0:
		if kk >= pp:
			print("K")
		else:
			print("P")
	else:
		if kk > pp:
			print("K")
		else:
			print("P")
0