結果

問題 No.2723 Fortune-telling by Flowers
ユーザー ks2mks2m
提出日時 2024-04-12 22:01:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 2,046 ms
コンパイル使用メモリ 73,656 KB
実行使用メモリ 46,588 KB
最終ジャッジ日時 2024-10-02 23:18:30
合計ジャッジ時間 4,762 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,676 KB
testcase_01 AC 106 ms
39,204 KB
testcase_02 AC 164 ms
45,228 KB
testcase_03 AC 237 ms
44,108 KB
testcase_04 AC 255 ms
46,588 KB
testcase_05 AC 112 ms
40,868 KB
testcase_06 AC 125 ms
41,404 KB
testcase_07 AC 129 ms
41,088 KB
testcase_08 AC 131 ms
41,044 KB
testcase_09 AC 167 ms
44,688 KB
testcase_10 AC 143 ms
41,440 KB
testcase_11 AC 142 ms
42,288 KB
testcase_12 AC 131 ms
41,360 KB
testcase_13 AC 131 ms
41,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int t = Integer.parseInt(br.readLine());
		PrintWriter pw = new PrintWriter(System.out);
		for (int z = 0; z < t; z++) {
			int n = Integer.parseInt(br.readLine());
			char[] s = br.readLine().toCharArray();

			int k = 0;
			int p = 0;
			char pre = 'a';
			for (int i = 0; i < n; i++) {
				if (s[i] != pre) {
					if (s[i] =='K') k++;
					if (s[i] =='P') p++;
					pre = s[i];
				}
			}
			if (k >= p) {
				pw.println("K");
			} else {
				pw.println("P");
			}
		}
		pw.flush();
		br.close();
	}
}
0