結果
問題 | No.2997 Making YuzuKizu |
ユーザー | 👑 ygussany |
提出日時 | 2024-12-22 00:04:21 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 837 bytes |
コンパイル時間 | 1,489 ms |
コンパイル使用メモリ | 28,416 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-22 00:04:24 |
合計ジャッジ時間 | 1,535 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 6 ms
5,248 KB |
testcase_02 | AC | 6 ms
5,248 KB |
testcase_03 | AC | 6 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 1 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 1 ms
5,248 KB |
ソースコード
#include <stdio.h> void chmin(int *a, int b) { if (*a > b) *a = b; } void chmax(int *a, int b) { if (*a < b) *a = b; } int main() { char S[1000001]; scanf("%s", S); int i, a[26] = {}, Y = 0, A = 0, X = 0, tmp; for (i = 0; S[i] != 0; i++) a[S[i] - 'a']++; tmp = 1000000; chmin(&tmp, a['y' - 'a']); chmin(&tmp, a['u' - 'a']); chmin(&tmp, a['k' - 'a']); chmin(&tmp, a['a' - 'a']); chmin(&tmp, a['r' - 'a']); chmin(&tmp, a['i' - 'a']); Y = tmp; tmp = 1000000; chmin(&tmp, a['a' - 'a'] / 2); chmin(&tmp, a['k' - 'a']); chmin(&tmp, a['r' - 'a']); chmin(&tmp, a['i' - 'a']); A = tmp; tmp = 1000000; chmin(&tmp, a['y' - 'a']); chmin(&tmp, a['u' - 'a'] / 3); chmin(&tmp, a['z' - 'a'] / 2); chmin(&tmp, a['k' - 'a']); chmin(&tmp, a['i' - 'a']); X = tmp; printf("%d %d %d\n", Y, A, X); fflush(stdout); return 0; }