結果
問題 | No.289 数字を全て足そう |
ユーザー | GeckoCPPSonata |
提出日時 | 2019-08-31 21:26:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 1,680 bytes |
コンパイル時間 | 2,273 ms |
コンパイル使用メモリ | 199,920 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-04 02:10:25 |
合計ジャッジ時間 | 3,166 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; //#pragma GCC optimize ("-O3") using ll = long long; using vi = vector<int>; using vl = vector<ll>; using pi = pair<int, int>; using pl = pair<ll, ll>; const char alphabetl[26] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'}; const char alphabetu[26] = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'}; const ll MOD = (ll) 1e9 + 7; const int MAX_INT = 1 << 17; const ll INFL = 1LL << 60; const ll MAX_V = 1010; const ll MAX_E = 2010; ll V, E; struct edge { ll from, to, cost; }; edge ES[MAX_E]; ll d[MAX_V]; #define ALL(obj) (obj).begin(),(obj).end() #define RALL(obj) (obj).rbegin(),(obj).rend() #define PRINT(n) cout << n << "\n"; #define PRINT2(n, m) cout << n << " " << m << " "<< "\n"; // REP(i,n) -- 0 - n-1 ++ #define REP(i,n) for(int i=0;i<(int)n;++i) // RREP(i,n) -- n-1 - 0 -- #define RREP(i,n) for(int i =(int)n;i>0;--i) // rep(i,a,b) -- a - b ++ #define rep(i,a,b) for(int i=a;i<=b;i++) // rrep(i,a,b)-- a - b -- #define rrep(i,a,b) for(int i=a;i>=b;i--) // 0 - 2^(n-1) #define REPbit(bit, n) for(int bit = 0; bit < (int)(1<<n); ++bit) #define FOR(i,a,b) for(int i=a; i<=(int)b; ++i) void no289(); int main() {cin.tie(0); ios::sync_with_stdio(false); no289();} /********************************/ /** yukicoder No.289 **/ /** by MoonlightSonata **/ /********************************/ void no289(){ string s; int ans = 0; cin >> s; for(auto& i : s) if (isdigit(i)) ans += i-'0'; PRINT(ans) }