結果

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

ソースコード

diff #

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

#define FOR(i,l,r) for(int i = (int) (l);i < (int) (r);i++)
#define ALL(x) x.begin(),x.end()
template<typename T> bool chmax(T& a,const T& b){ return a < b ? (a = b,true) : false; }
template<typename T> bool chmin(T& a,const T& b){ return b < a ? (a = b,true) : false; }
typedef long long ll;

int A [10] = {3,2,2,2,3,2,3,2,4,3};
int N;
string S;

int main()
{
	cin >> S;
	N = S.size();

	int ans = 1;
	FOR(i,0,N){
		ans += A [S [i] - '0'];
	}
	printf("%d\n",ans);

	return 0;
}
0