結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー t33f
提出日時 2018-10-05 21:09:58
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 143 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 56,876 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-13 05:19:57
合計ジャッジ時間 1,201 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main() { string s; cin >> s; int ans = 0; for (char c : s) ans += c - 'a'; cout << ans << endl; }
0