結果

問題 No.2723 Fortune-telling by Flowers
ユーザー 👑 ygussanyygussany
提出日時 2024-03-30 10:27:56
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 29,184 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-30 17:25:37
合計ジャッジ時間 874 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int solve(int N, char S[])
{
	int i, j, num[3] = {};
	for (i = 0; i < N; i = j + 1) {
		if (S[i] == '-') {
			j = i;
			continue;
		}
		for (j = i; j < N && S[j] != '-'; j++);
		j--;
		if (S[i] != S[j]) num[2]++;
		else if (S[i] == 'K') num[0]++;
		else num[1]++;
	}
	if (num[0] >= num[1]) return 1;
	else return 0;
}

int main()
{
	int T, N;
	char S[500001];
	scanf("%d", &T);
	while (T--) {
		scanf("%d", &N);
		scanf("%s", S);
		if (solve(N, S) != 0) printf("K\n");
		else printf("P\n");
	}
	fflush(stdout);
	return 0;
}
0