結果
問題 | No.509 塗りつぶしツール |
ユーザー |
|
提出日時 | 2017-04-28 23:10:53 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 684 bytes |
コンパイル時間 | 499 ms |
コンパイル使用メモリ | 65,276 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-13 18:30:53 |
合計ジャッジ時間 | 1,374 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<math.h> #include<string> using namespace std; int main(){ int hole[10] = {1,0,0,0,1,0,1,0,2,1}; string n; cin >> n; int keta = n.length(); vector<int> times; int precount = 0; int count = 0; for(int j=keta-1;j>=0;j--){ int one = n[j] - '0'; precount += hole[one]; } if(precount >= keta){ for(int i=keta-1;i>=0;i--){ int one = n[i] - '0'; count += hole[one]; count ++; count ++; } count++; }else{ for(int i=keta-1;i>=0;i--){ int one = n[i] - '0'; count += hole[one]; count += hole[one]; count ++; } count++; count++; } cout << count << endl; return 0; }