結果

問題 No.910 素数部分列
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-06-14 00:40:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 631 bytes
コンパイル時間 1,141 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-06-26 03:20:14
合計ジャッジ時間 8,980 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 WA -
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 WA -
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 WA -
testcase_17 AC 28 ms
10,752 KB
testcase_18 WA -
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 28 ms
10,624 KB
testcase_23 AC 167 ms
12,416 KB
testcase_24 AC 166 ms
12,672 KB
testcase_25 AC 161 ms
12,416 KB
testcase_26 AC 164 ms
12,416 KB
testcase_27 AC 171 ms
12,544 KB
testcase_28 AC 167 ms
12,416 KB
testcase_29 AC 202 ms
12,544 KB
testcase_30 AC 196 ms
12,544 KB
testcase_31 AC 204 ms
12,416 KB
testcase_32 AC 197 ms
12,416 KB
testcase_33 AC 201 ms
12,672 KB
testcase_34 AC 213 ms
12,544 KB
testcase_35 AC 208 ms
12,672 KB
testcase_36 AC 208 ms
12,544 KB
testcase_37 AC 206 ms
12,544 KB
testcase_38 AC 202 ms
12,544 KB
testcase_39 AC 196 ms
12,416 KB
testcase_40 AC 209 ms
12,672 KB
testcase_41 AC 193 ms
12,544 KB
testcase_42 AC 203 ms
12,544 KB
testcase_43 AC 195 ms
12,416 KB
testcase_44 AC 191 ms
12,672 KB
testcase_45 AC 192 ms
12,544 KB
testcase_46 AC 198 ms
12,672 KB
testcase_47 AC 200 ms
12,544 KB
testcase_48 AC 174 ms
12,416 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 132 ms
12,672 KB
testcase_52 AC 195 ms
12,416 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[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:
        print(ans)
0