結果

問題 No.2723 Fortune-telling by Flowers
ユーザー 沙耶花沙耶花
提出日時 2024-04-12 21:37:26
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 865 bytes
コンパイル時間 3,898 ms
コンパイル使用メモリ 265,036 KB
実行使用メモリ 20,796 KB
最終ジャッジ日時 2024-10-02 23:05:23
合計ジャッジ時間 5,183 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001


int main(){

/*
	for(int i=1;i<=20;i++){
		cout<<i<<' '<<check(i,0)<<endl;
	}*/
	int _t;
	cin>>_t;
	rep(_,_t){
		int n;
		cin>>n;
		string s;
		cin>>s;
		
		vector<string> t;
		rep(i,n){
			if(s[i]=='-')t.push_back("");
			else{
				if(t.size()==0 || t.back()=="")t.push_back(string(1,s[i]));
				else t.back() += s[i];
			}
		}
		int X = 0,Y = 0;
		rep(i,t.size()){
			if(t[i].size()==0 || t[i][0]!=t[i].back())continue;
			if(t[i][0]=='P')X++;
			else Y++;
		}
		while(true){
			X--;
			if(X<0){
				cout<<"K"<<endl;
				break;
			}
			Y--;
			if(Y<0){
				cout<<"P"<<endl;
				break;
			}
		}
	}
	
	return 0;
}
0