結果

問題 No.145 yukiover
ユーザー onigiryonigiry
提出日時 2021-08-21 19:15:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,042 bytes
コンパイル時間 3,685 ms
コンパイル使用メモリ 81,048 KB
実行使用メモリ 56,712 KB
最終ジャッジ日時 2024-10-15 09:51:36
合計ジャッジ時間 9,594 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,848 KB
testcase_01 WA -
testcase_02 AC 131 ms
54,340 KB
testcase_03 AC 132 ms
54,088 KB
testcase_04 AC 133 ms
54,120 KB
testcase_05 AC 133 ms
53,984 KB
testcase_06 AC 132 ms
54,012 KB
testcase_07 AC 132 ms
54,024 KB
testcase_08 AC 132 ms
53,996 KB
testcase_09 AC 132 ms
53,784 KB
testcase_10 AC 132 ms
53,840 KB
testcase_11 AC 240 ms
56,436 KB
testcase_12 AC 245 ms
56,420 KB
testcase_13 AC 240 ms
56,272 KB
testcase_14 AC 237 ms
56,404 KB
testcase_15 AC 240 ms
56,712 KB
testcase_16 AC 226 ms
56,644 KB
testcase_17 AC 238 ms
56,596 KB
testcase_18 AC 239 ms
56,452 KB
testcase_19 AC 244 ms
56,528 KB
testcase_20 AC 238 ms
56,560 KB
testcase_21 AC 236 ms
56,376 KB
testcase_22 AC 241 ms
56,356 KB
testcase_23 AC 243 ms
56,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {


	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();
		String s = sc.next();
		List<Character> sList = new ArrayList<>();
		List<Character> yukiList = new ArrayList<>();

		yukiList.add('y');
		yukiList.add('u');
		yukiList.add('k');
		yukiList.add('i');

		int yCountup = 0;
		int yCount = 0;
		int uCountup = 0;
		int uCount = 0;
		int kCountup = 0;
		int kCount = 0;
		int iCountup = 0;
		int iCount = 0;
		int eCount = 0;

		for (int i = 0; i < n; i++) {
			sList.add(s.charAt(i));
			if (sList.get(i) > 'y') {
				yCountup++;
			} else if(sList.get(i) == 'y') {
				yCount++;
			} else if (sList.get(i) > 'u') {
				uCountup++;
			} else if(sList.get(i) == 'u') {
				uCount++;
			} else if (sList.get(i) > 'k') {
				kCountup++;
			} else if(sList.get(i) == 'k') {
				kCount++;
			} else if (sList.get(i) > 'i') {
				iCountup++;
			} else if(sList.get(i) == 'i') {
				iCount++;
			} else {
				eCount++;
			}
		}

		int luck = 0;

		luck += yCountup;

		for (int i = 1; i <= yCount; i++) {
			if (uCountup-- > 0 ) {
				luck++;
				continue;
			}

			if (uCount > 0) {
				if (kCountup > 0) {
					uCount--;
					kCountup--;
					luck++;
					continue;
				}

				if (kCount > 0) {
					if (iCountup > 0) {
						uCount--;
						kCount--;
						iCountup--;
						luck++;
						continue;
					}

					if (iCount > 0) {
						if (eCount > 0) {
							uCount--;
							kCount--;
							iCount--;
							eCount--;
							luck++;
							continue;
						}

						if (iCount-1 > 0) {
							uCount--;
							kCount--;
							iCount--;
							iCount--;
							luck++;
							continue;
						}
					}

					if (kCount-1 > 0) {
						uCount--;
						kCount--;
						kCount--;
						luck++;
						continue;
					}
				}
				if (uCount-1 > 0) {
					uCount--;
					uCount--;
					luck++;
					continue;
				}
			}
			if (yCount-- > 0) {
				luck++;
			}
		}

		System.out.println(luck);

	}
}
0