結果

問題 No.2723 Fortune-telling by Flowers
ユーザー 👑 p-adicp-adic
提出日時 2023-12-25 15:44:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 842 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,748 KB
最終ジャッジ日時 2024-09-27 14:26:49
合計ジャッジ時間 3,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 50 ms
10,752 KB
testcase_02 AC 162 ms
10,624 KB
testcase_03 AC 793 ms
11,520 KB
testcase_04 AC 842 ms
11,520 KB
testcase_05 AC 76 ms
15,848 KB
testcase_06 AC 33 ms
11,776 KB
testcase_07 AC 90 ms
16,744 KB
testcase_08 AC 91 ms
16,748 KB
testcase_09 AC 159 ms
10,624 KB
testcase_10 AC 90 ms
10,624 KB
testcase_11 AC 85 ms
10,752 KB
testcase_12 AC 85 ms
11,904 KB
testcase_13 AC 90 ms
14,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=input
for t in [0]*int(I()):
	I()
	D={'K':0,'P':0}
	for s in I().split('-'):
		if s:D[s[0]]+=s[0]==s[-1]
	print("KP"[D['P']>D['K']])
0