結果

問題 No.910 素数部分列
ユーザー kurimupykurimupy
提出日時 2020-06-18 01:49:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 1,000 ms
コード長 694 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 85,284 KB
最終ジャッジ日時 2024-07-03 12:36:58
合計ジャッジ時間 5,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,800 KB
testcase_01 AC 37 ms
52,328 KB
testcase_02 AC 38 ms
53,536 KB
testcase_03 AC 37 ms
52,000 KB
testcase_04 AC 37 ms
52,488 KB
testcase_05 AC 37 ms
53,152 KB
testcase_06 AC 36 ms
53,768 KB
testcase_07 AC 37 ms
53,072 KB
testcase_08 AC 36 ms
53,016 KB
testcase_09 AC 39 ms
52,856 KB
testcase_10 AC 37 ms
52,416 KB
testcase_11 AC 36 ms
53,016 KB
testcase_12 AC 36 ms
52,952 KB
testcase_13 AC 35 ms
53,052 KB
testcase_14 AC 36 ms
52,516 KB
testcase_15 AC 36 ms
52,516 KB
testcase_16 AC 36 ms
52,648 KB
testcase_17 AC 36 ms
53,428 KB
testcase_18 AC 36 ms
52,268 KB
testcase_19 AC 37 ms
52,980 KB
testcase_20 AC 36 ms
53,500 KB
testcase_21 AC 35 ms
52,216 KB
testcase_22 AC 36 ms
52,400 KB
testcase_23 AC 79 ms
84,424 KB
testcase_24 AC 79 ms
84,536 KB
testcase_25 AC 79 ms
84,448 KB
testcase_26 AC 79 ms
84,600 KB
testcase_27 AC 78 ms
84,240 KB
testcase_28 AC 81 ms
84,732 KB
testcase_29 AC 83 ms
84,636 KB
testcase_30 AC 84 ms
84,672 KB
testcase_31 AC 83 ms
84,296 KB
testcase_32 AC 86 ms
84,888 KB
testcase_33 AC 80 ms
84,748 KB
testcase_34 AC 82 ms
84,852 KB
testcase_35 AC 84 ms
84,816 KB
testcase_36 AC 87 ms
85,064 KB
testcase_37 AC 86 ms
84,680 KB
testcase_38 AC 83 ms
84,876 KB
testcase_39 AC 85 ms
84,700 KB
testcase_40 AC 81 ms
84,764 KB
testcase_41 AC 85 ms
84,676 KB
testcase_42 AC 84 ms
84,904 KB
testcase_43 AC 85 ms
84,696 KB
testcase_44 AC 84 ms
84,912 KB
testcase_45 AC 86 ms
85,048 KB
testcase_46 AC 84 ms
84,816 KB
testcase_47 AC 85 ms
84,756 KB
testcase_48 AC 66 ms
76,360 KB
testcase_49 AC 60 ms
76,992 KB
testcase_50 AC 73 ms
84,852 KB
testcase_51 AC 58 ms
72,652 KB
testcase_52 AC 81 ms
85,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# problem 1
N = int(input())
S = list(input())
ans = 0
dic = {"1": 0, "3": 0, "5": 0, "7": 0, "9": 0}
for some in S:
    dic[some] += 1

ans = dic["3"]+dic["5"]+dic["7"]
new = {1: 0, 9: 0}
for x in S:
    n = int(x)
    if n == 1: new[1] += 1
    if n == 9:
        new[9] += 1
        
        if new[9]>0 and new[1] > 0:
            new[1] -= 1
            new[9] -= 1
            ans += 1


if new[9] >= new[1]*2:
    ans += new[1]
    print(ans)
    exit()
    
elif new[9] < new[1]*2:

    if new[9]>1:
        p = new[9]//2
        ans += p
        new[1] -= p
        ans += new[1]//2
        print(ans)
        exit()
    else:
        ans += new[1]//2
        print(ans)
        exit()
0