結果
問題 | No.509 塗りつぶしツール |
ユーザー | tanimani364 |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
ソースコード
#!/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()