結果

問題 No.2723 Fortune-telling by Flowers
ユーザー 👑 p-adicp-adic
提出日時 2023-12-25 15:44:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 387 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 95,036 KB
最終ジャッジ日時 2024-09-27 14:26:52
合計ジャッジ時間 2,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,148 KB
testcase_01 AC 86 ms
76,484 KB
testcase_02 AC 133 ms
76,552 KB
testcase_03 AC 368 ms
78,488 KB
testcase_04 AC 387 ms
78,744 KB
testcase_05 AC 87 ms
95,036 KB
testcase_06 AC 42 ms
55,680 KB
testcase_07 AC 77 ms
83,072 KB
testcase_08 AC 78 ms
82,872 KB
testcase_09 AC 134 ms
76,928 KB
testcase_10 AC 106 ms
76,524 KB
testcase_11 AC 77 ms
75,232 KB
testcase_12 AC 77 ms
76,496 KB
testcase_13 AC 81 ms
79,380 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