結果

問題 No.2723 Fortune-telling by Flowers
ユーザー 👑 p-adicp-adic
提出日時 2023-12-25 15:30:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 77,600 KB
最終ジャッジ日時 2024-09-27 14:26:33
合計ジャッジ時間 2,956 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,440 KB
testcase_01 AC 94 ms
76,628 KB
testcase_02 AC 128 ms
76,796 KB
testcase_03 AC 342 ms
77,504 KB
testcase_04 AC 320 ms
76,796 KB
testcase_05 AC 51 ms
76,864 KB
testcase_06 AC 60 ms
76,472 KB
testcase_07 AC 66 ms
76,788 KB
testcase_08 AC 68 ms
76,504 KB
testcase_09 AC 319 ms
77,440 KB
testcase_10 AC 111 ms
77,600 KB
testcase_11 AC 226 ms
75,192 KB
testcase_12 AC 81 ms
75,392 KB
testcase_13 AC 83 ms
76,644 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