結果

問題 No.2723 Fortune-telling by Flowers
ユーザー 👑 p-adicp-adic
提出日時 2023-12-25 15:30:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 941 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,928 KB
最終ジャッジ日時 2024-09-27 14:26:30
合計ジャッジ時間 4,693 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 65 ms
10,752 KB
testcase_02 AC 251 ms
10,752 KB
testcase_03 AC 818 ms
10,624 KB
testcase_04 AC 941 ms
10,624 KB
testcase_05 AC 98 ms
11,644 KB
testcase_06 AC 191 ms
11,928 KB
testcase_07 AC 204 ms
11,772 KB
testcase_08 AC 198 ms
11,644 KB
testcase_09 AC 267 ms
10,880 KB
testcase_10 AC 206 ms
10,752 KB
testcase_11 AC 197 ms
10,752 KB
testcase_12 AC 204 ms
11,008 KB
testcase_13 AC 200 ms
11,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
for t in R(int(I())):
	N,S,c=int(I()),I()+'-','-'
	K=P=0
	for i in R(N):
		if S[i]>'-':
			if c<'K':c=S[i]
			if S[i+1]<'K':
				if c==S[i]:
					if c>'K':P+=1
					else:K+=1
				c='-'
	print("KP"[P>K])
0