結果
問題 |
No.509 塗りつぶしツール
|
ユーザー |
|
提出日時 | 2017-08-03 06:22:36 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,009 bytes |
コンパイル時間 | 1,536 ms |
コンパイル使用メモリ | 166,308 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-11 18:21:03 |
合計ジャッジ時間 | 2,612 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 WA * 17 |
ソースコード
#include <bits/stdc++.h> #define show(x) cerr << #x << " = " << x << endl using namespace std; using ll = long long; using pii = pair<int, int>; using vi = vector<int>; template <typename T> ostream& operator<<(ostream& os, const vector<T>& v) { os << "sz=" << v.size() << "\n["; for (const auto& p : v) { os << p << ","; } os << "]\n"; return os; } template <typename S, typename T> ostream& operator<<(ostream& os, const pair<S, T>& p) { os << "(" << p.first << "," << p.second << ")"; return os; } constexpr ll MOD = 1e9 + 7; template <typename T> constexpr T INF = numeric_limits<T>::max() / 100; constexpr int cost[10] = {3, 2, 2, 2, 3, 2, 3, 2, 4, 3}; int cnt[10]; int main() { cin.tie(0); ios::sync_with_stdio(false); ll n; cin >> n; while (n > 0) { cnt[n % 10]++; n /= 10; } int sum = 1; for (int i = 0; i < 10; i++) { sum += cnt[i] * cost[i]; } cout << sum << endl; return 0; }