結果
問題 |
No.289 数字を全て足そう
|
ユーザー |
|
提出日時 | 2023-04-29 11:48:42 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 243 bytes |
コンパイル時間 | 483 ms |
コンパイル使用メモリ | 64,308 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-18 09:30:45 |
合計ジャッジ時間 | 1,288 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include <iostream> #include <string> using namespace std; int main() { string S; cin >> S; int res = 0; for (char c : S) { if (isdigit(c)) { res += c - '0'; } } cout << res << endl; }