結果

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

ソースコード

diff #

#include <iostream>
#include <string>

int main() {
	int cnt[10] = { 1, 0, 0, 0, 1, 0, 1, 0, 2, 1 };

	std::string s;
	std::cin >> s;

	int ans = 1;
	for (char c : s) {
		ans += cnt[c - '0'] + 2;
	}

	std::cout << ans << std::endl;
}
0