結果
問題 |
No.289 数字を全て足そう
|
ユーザー |
![]() |
提出日時 | 2019-06-24 20:56:13 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 556 bytes |
コンパイル時間 | 521 ms |
コンパイル使用メモリ | 64,392 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-13 01:16:10 |
合計ジャッジ時間 | 1,530 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include <iostream> #include <string> #include <cmath> #include <vector> #include <algorithm> using namespace std; int ctoi(const char c){ switch(c){ case '0': return 0; case '1': return 1; case '2': return 2; case '3': return 3; case '4': return 4; case '5': return 5; case '6': return 6; case '7': return 7; case '8': return 8; case '9': return 9; default : return 0; } } int main(){ string str; int ans=0; cin>>str; for(int i=0; i<str.length();i++){ ans+=ctoi(str.at(i)); } cout<<ans<<endl; }