結果

問題 No.2997 Making YuzuKizu
ユーザー ルクルク
提出日時 2024-12-22 12:45:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-12-22 12:45:27
合計ジャッジ時間 1,846 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 68 ms
76,288 KB
testcase_02 AC 62 ms
76,416 KB
testcase_03 AC 62 ms
76,544 KB
testcase_04 AC 40 ms
57,984 KB
testcase_05 AC 43 ms
62,464 KB
testcase_06 AC 41 ms
59,776 KB
testcase_07 AC 43 ms
61,312 KB
testcase_08 AC 40 ms
57,856 KB
testcase_09 AC 44 ms
65,792 KB
testcase_10 AC 43 ms
62,848 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 38 ms
51,456 KB
testcase_13 AC 38 ms
51,584 KB
testcase_14 AC 38 ms
52,096 KB
testcase_15 AC 38 ms
51,328 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 39 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=[0]*26
for c in input():s[ord(c)-97]+=1
m=min
t=m(s[8],s[10])
x=s[24]
y=s[20]
z=s[17]
print(m(x,y,s[0],z,t),m(s[0]//2,z,t),m(x,y//3,s[25]//2,t))
0