結果
問題 | No.145 yukiover |
ユーザー | 37zigen |
提出日時 | 2018-06-14 19:16:15 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,855 bytes |
コンパイル時間 | 2,237 ms |
コンパイル使用メモリ | 78,612 KB |
実行使用メモリ | 58,364 KB |
最終ジャッジ日時 | 2024-06-30 14:27:32 |
合計ジャッジ時間 | 7,901 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
54,060 KB |
testcase_01 | AC | 132 ms
53,872 KB |
testcase_02 | AC | 133 ms
54,256 KB |
testcase_03 | AC | 134 ms
54,144 KB |
testcase_04 | AC | 134 ms
54,160 KB |
testcase_05 | AC | 133 ms
53,996 KB |
testcase_06 | WA | - |
testcase_07 | AC | 133 ms
54,044 KB |
testcase_08 | AC | 133 ms
54,048 KB |
testcase_09 | AC | 134 ms
54,136 KB |
testcase_10 | WA | - |
testcase_11 | AC | 211 ms
56,092 KB |
testcase_12 | AC | 227 ms
55,964 KB |
testcase_13 | WA | - |
testcase_14 | AC | 223 ms
56,240 KB |
testcase_15 | AC | 235 ms
56,460 KB |
testcase_16 | AC | 235 ms
55,208 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 225 ms
56,048 KB |
ソースコード
import java.util.ArrayList; import java.util.Arrays; import java.util.Comparator; import java.util.Scanner; public class Main { public static void main(String[] args) { new Main().run(); } String yuki = "yuki"; void run() { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); String str = sc.next(); int abcdefgh = 0, i = 0, j = 0, k = 0, lmnopqrst = 0, u = 0, vwx = 0, y = 0, z = 0; for (int t = 0; t < str.length(); ++t) { if (str.charAt(t) - 'i' < 0) ++abcdefgh; else if (str.charAt(t) == 'i') { ++i; } else if (str.charAt(t) - 'j' == 0) ++j; else if (str.charAt(t) - 'k' == 0) ++k; else if (str.charAt(t) - 'l' >= 0 && str.charAt(t) - 't' <= 0) ++lmnopqrst; else if (str.charAt(t) - 'u' == 0) ++u; else if (str.charAt(t) - 'v' >= 0 && str.charAt(t) - 'x' <= 0) ++vwx; else if (str.charAt(t) == 'y') ++y; else if (str.charAt(t) == 'z') ++z; else { tr(str.charAt(t)); throw new AssertionError(); } } int ans = 0; while (y > 0 && u > 0 && k > 0 && i > 0 && abcdefgh > 0) { ++ans; --y; --u; --k; --i; --abcdefgh; } while (y > 0 && u > 0 && k > 0 && i >= 2) { ++ans; --y; --u; --k; i -= 2; --abcdefgh; } while (y > 0 && u > 0 && k > 0 && i > 0 && j > 0) { ++ans; --y; --u; --k; --i; --j; } while (y > 0 && u > 0 && k >= 2) { ++ans; --y; --u; k -= 2; } while (y > 0 && u > 0 && lmnopqrst > 0) { ++ans; --y; --u; --lmnopqrst; } while (y > 0 && u >= 2) { ++ans; --y; u -= 2; } while (y > 0 && vwx > 0) { ++ans; --y; --vwx; } while (y >= 2) { ++ans; y -= 2; } while (z > 0) { ++ans; --z; } System.out.println(ans); } void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }