結果

問題 No.910 素数部分列
ユーザー brthyyjpbrthyyjp
提出日時 2022-02-10 17:07:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 1,000 ms
コード長 360 bytes
コンパイル時間 907 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 84,608 KB
最終ジャッジ日時 2024-06-25 23:40:37
合計ジャッジ時間 4,841 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
51,456 KB
testcase_03 AC 43 ms
51,840 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 42 ms
51,456 KB
testcase_07 AC 47 ms
51,840 KB
testcase_08 AC 42 ms
51,584 KB
testcase_09 AC 42 ms
52,216 KB
testcase_10 AC 41 ms
51,712 KB
testcase_11 AC 42 ms
51,712 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 41 ms
51,968 KB
testcase_14 AC 42 ms
51,840 KB
testcase_15 AC 42 ms
51,968 KB
testcase_16 AC 42 ms
51,456 KB
testcase_17 AC 41 ms
51,584 KB
testcase_18 AC 41 ms
51,584 KB
testcase_19 AC 40 ms
51,968 KB
testcase_20 AC 41 ms
51,712 KB
testcase_21 AC 41 ms
52,224 KB
testcase_22 AC 40 ms
51,712 KB
testcase_23 AC 71 ms
76,836 KB
testcase_24 AC 81 ms
84,352 KB
testcase_25 AC 83 ms
84,384 KB
testcase_26 AC 82 ms
84,608 KB
testcase_27 AC 83 ms
84,480 KB
testcase_28 AC 81 ms
84,352 KB
testcase_29 AC 67 ms
75,776 KB
testcase_30 AC 65 ms
75,520 KB
testcase_31 AC 66 ms
75,008 KB
testcase_32 AC 66 ms
75,008 KB
testcase_33 AC 65 ms
75,520 KB
testcase_34 AC 67 ms
75,520 KB
testcase_35 AC 68 ms
76,380 KB
testcase_36 AC 69 ms
76,032 KB
testcase_37 AC 68 ms
76,160 KB
testcase_38 AC 67 ms
76,160 KB
testcase_39 AC 67 ms
76,288 KB
testcase_40 AC 67 ms
75,776 KB
testcase_41 AC 68 ms
75,904 KB
testcase_42 AC 66 ms
76,160 KB
testcase_43 AC 67 ms
76,160 KB
testcase_44 AC 67 ms
76,032 KB
testcase_45 AC 67 ms
76,032 KB
testcase_46 AC 72 ms
77,312 KB
testcase_47 AC 69 ms
75,904 KB
testcase_48 AC 58 ms
67,840 KB
testcase_49 AC 57 ms
67,840 KB
testcase_50 AC 62 ms
74,240 KB
testcase_51 AC 56 ms
68,096 KB
testcase_52 AC 62 ms
72,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = list(str(input()))

ans = 0
cnt1 = 0
cnt9 = 0
for c in s:
    if c == '3' or c == '5' or c == '7':
        ans += 1
    elif c == '9':
        if cnt1:
            cnt1 -= 1
            ans += 1
        else:
            cnt9 += 1
    else:
        cnt1 += 1

q = cnt9//2
ans += min(q, cnt1)
cnt1 -= min(q, cnt1)
ans += cnt1//2
print(ans)
0