結果

問題 No.509 塗りつぶしツール
ユーザー tanimani364tanimani364
提出日時 2021-03-29 17:45:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 67,404 KB
最終ジャッジ日時 2024-11-29 10:09:03
合計ジャッジ時間 3,095 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
67,168 KB
testcase_01 AC 63 ms
67,152 KB
testcase_02 AC 64 ms
66,940 KB
testcase_03 AC 63 ms
66,776 KB
testcase_04 AC 63 ms
66,092 KB
testcase_05 AC 64 ms
66,352 KB
testcase_06 AC 64 ms
66,704 KB
testcase_07 AC 62 ms
65,928 KB
testcase_08 AC 63 ms
65,660 KB
testcase_09 AC 64 ms
67,236 KB
testcase_10 AC 64 ms
66,864 KB
testcase_11 AC 63 ms
66,096 KB
testcase_12 AC 64 ms
66,816 KB
testcase_13 AC 63 ms
66,464 KB
testcase_14 AC 64 ms
67,060 KB
testcase_15 AC 63 ms
67,404 KB
testcase_16 AC 62 ms
66,720 KB
testcase_17 AC 64 ms
67,336 KB
testcase_18 AC 63 ms
66,544 KB
testcase_19 AC 64 ms
66,956 KB
testcase_20 AC 63 ms
66,792 KB
testcase_21 AC 63 ms
66,436 KB
testcase_22 AC 61 ms
66,036 KB
testcase_23 AC 63 ms
66,508 KB
testcase_24 AC 63 ms
66,540 KB
testcase_25 AC 63 ms
66,732 KB
testcase_26 AC 62 ms
66,736 KB
testcase_27 AC 62 ms
66,816 KB
testcase_28 AC 63 ms
67,020 KB
testcase_29 AC 63 ms
66,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#coding:utf-8

import math
import string
import random
import heapq
from sys import stdin
# import numpy as np
# from matplotlib import pyplot as plt
	
def add(c):
	if c=='0':
		return 1
	elif c=='4':
		return 1
	elif c=='6':
		return 1
	elif c=='8':
		return 2
	elif c=='9':
		return 1
	else :
		return 0

def main():
	read=stdin.readline

	#edit here!
	s=read()
	n=len(s)
	n-=1
	ans=n*2+1
	for i in range(n):
		ans+=add(s[i])
	res=n+2
	for i in range(n):
		res+=2*add(s[i])
	if ans>res:
		ans=res
	print(ans)

if __name__ == '__main__':
	main()
0