結果

問題 No.509 塗りつぶしツール
ユーザー t98slider
提出日時 2023-01-24 23:00:56
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 1,585 ms
コンパイル使用メモリ 169,196 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-26 07:59:05
合計ジャッジ時間 2,808 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    string s;
    cin >> s;
    int ans = 1;
    vector<int> tb = {3, 2, 2, 2, 3, 2, 3, 2, 4, 3};
    for(auto &&c:s)ans += tb[c - '0'];
    cout << ans << endl;
}
0