結果

問題 No.2997 Making YuzuKizu
ユーザー ルクルク
提出日時 2024-12-22 00:31:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-12-22 00:31:51
合計ジャッジ時間 1,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,584 KB
testcase_01 AC 81 ms
76,800 KB
testcase_02 AC 76 ms
76,544 KB
testcase_03 AC 74 ms
76,544 KB
testcase_04 AC 48 ms
57,728 KB
testcase_05 AC 51 ms
62,592 KB
testcase_06 AC 48 ms
60,288 KB
testcase_07 AC 51 ms
61,568 KB
testcase_08 AC 48 ms
57,600 KB
testcase_09 AC 52 ms
65,664 KB
testcase_10 AC 51 ms
62,976 KB
testcase_11 AC 42 ms
51,712 KB
testcase_12 AC 42 ms
52,352 KB
testcase_13 AC 43 ms
51,584 KB
testcase_14 AC 45 ms
51,968 KB
testcase_15 AC 42 ms
51,584 KB
testcase_16 AC 42 ms
51,840 KB
testcase_17 AC 43 ms
51,712 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