結果

問題 No.2997 Making YuzuKizu
ユーザー loop0919loop0919
提出日時 2024-12-04 20:21:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-12-21 23:34:46
合計ジャッジ時間 2,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 109 ms
77,312 KB
testcase_02 AC 109 ms
77,056 KB
testcase_03 AC 115 ms
77,056 KB
testcase_04 AC 47 ms
60,032 KB
testcase_05 AC 50 ms
64,896 KB
testcase_06 AC 55 ms
62,592 KB
testcase_07 AC 51 ms
64,512 KB
testcase_08 AC 48 ms
59,904 KB
testcase_09 AC 54 ms
69,760 KB
testcase_10 AC 52 ms
65,664 KB
testcase_11 AC 43 ms
53,632 KB
testcase_12 AC 43 ms
53,504 KB
testcase_13 AC 42 ms
53,376 KB
testcase_14 AC 42 ms
53,888 KB
testcase_15 AC 41 ms
53,376 KB
testcase_16 AC 43 ms
53,376 KB
testcase_17 AC 43 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

S = Counter(input())
for T in map(Counter, ["yukari", "akari", "yuzukizu"]):
    print(min(S[t] // T[t] for t in T.keys()), end=" ")
0