結果
問題 | No.656 ゴルフ |
ユーザー |
![]() |
提出日時 | 2018-03-03 15:45:36 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 232 bytes |
コンパイル時間 | 1,668 ms |
コンパイル使用メモリ | 167,824 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 16:14:58 |
合計ジャッジ時間 | 2,465 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 6 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { string s; cin >> s; int ans = 0; for (auto &c : s) { int score = c - '0'; if (score == 0) { score = 10; } ans += score; } cout << ans << endl; return 0; }