結果

問題 No.509 塗りつぶしツール
ユーザー mlihua09mlihua09
提出日時 2020-09-15 02:19:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 53,436 KB
最終ジャッジ日時 2024-06-22 01:28:35
合計ジャッジ時間 1,938 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,404 KB
testcase_01 AC 34 ms
52,412 KB
testcase_02 AC 31 ms
51,956 KB
testcase_03 AC 33 ms
52,940 KB
testcase_04 AC 32 ms
52,304 KB
testcase_05 AC 31 ms
52,592 KB
testcase_06 AC 33 ms
52,192 KB
testcase_07 AC 34 ms
52,352 KB
testcase_08 AC 31 ms
53,436 KB
testcase_09 AC 32 ms
52,828 KB
testcase_10 AC 31 ms
51,872 KB
testcase_11 AC 31 ms
52,880 KB
testcase_12 AC 31 ms
52,424 KB
testcase_13 AC 36 ms
52,548 KB
testcase_14 AC 32 ms
53,352 KB
testcase_15 AC 32 ms
51,904 KB
testcase_16 AC 32 ms
52,080 KB
testcase_17 AC 33 ms
52,552 KB
testcase_18 AC 31 ms
52,072 KB
testcase_19 AC 33 ms
51,852 KB
testcase_20 AC 32 ms
52,068 KB
testcase_21 AC 32 ms
51,988 KB
testcase_22 AC 32 ms
51,548 KB
testcase_23 AC 32 ms
51,828 KB
testcase_24 AC 32 ms
52,352 KB
testcase_25 AC 32 ms
52,328 KB
testcase_26 AC 32 ms
52,940 KB
testcase_27 AC 32 ms
52,220 KB
testcase_28 AC 32 ms
53,224 KB
testcase_29 AC 34 ms
51,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


n = input()

x = 1 + n.count('0') + n.count('4') + n.count('6') + n.count('8') * 2 + n.count('9')

print(min(2 * len(n) + x, 2 * x + len(n)))
0