結果

問題 No.2997 Making YuzuKizu
ユーザー Apollo@KuroApollo@Kuro
提出日時 2024-12-04 17:35:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 283 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 77,380 KB
最終ジャッジ日時 2024-12-21 23:34:36
合計ジャッジ時間 1,937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,968 KB
testcase_01 WA -
testcase_02 AC 114 ms
76,808 KB
testcase_03 AC 112 ms
77,028 KB
testcase_04 AC 45 ms
59,928 KB
testcase_05 AC 50 ms
65,964 KB
testcase_06 AC 48 ms
63,976 KB
testcase_07 AC 49 ms
65,516 KB
testcase_08 AC 46 ms
60,956 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 42 ms
54,936 KB
testcase_12 AC 41 ms
53,812 KB
testcase_13 AC 43 ms
54,964 KB
testcase_14 AC 40 ms
53,924 KB
testcase_15 AC 41 ms
54,492 KB
testcase_16 AC 41 ms
54,768 KB
testcase_17 AC 42 ms
54,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
S = input()
N = Counter(S)
    
N_a, N_i, N_k, N_r, N_u, N_y, N_z = N["a"], N["i"], N["k"], N["r"], N["u"], N["y"], N["z"]
Y = min(N_y, N_u, N_k, N_a, N_i)
A = min(N_a // 2, N_k, N_r, N_i)
X = min(N_y, N_u // 3, N_z // 2, N_k, N_i)
    
print(Y, A, X)
0