結果

問題 No.509 塗りつぶしツール
ユーザー uenoku
提出日時 2017-05-13 22:08:12
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 474 bytes
コンパイル時間 782 ms
コンパイル使用メモリ 82,936 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 12:20:04
合計ジャッジ時間 1,835 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <vector>
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rrep(i, n) for (int i = (n)-1; i >= 0; i--)
using namespace std;
int main()
{
    string s;
    cin >> s;

    int a[10] = {4, 3, 3, 3, 4, 3, 4, 3, 5, 4};
    int ans = 0;
    rep(i, s.size())
    {
        ans += a[s[i] - '0'];
    }
    cout << ans - s.size() + 1 << endl;
}
0