結果
問題 | No.656 ゴルフ |
ユーザー | kazuki794 |
提出日時 | 2018-03-04 14:24:12 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 331 bytes |
コンパイル時間 | 1,054 ms |
コンパイル使用メモリ | 28,544 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 16:14:35 |
合計ジャッジ時間 | 3,423 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
#include <stdio.h> #include <stdlib.h> int main(void) { char S[] = ""; int i_S = 0; int i = 0; int tmp = 0; int sum = 0; scanf("%s",S); i_S = atoi(S); tmp = i_S; for(i=0;i<9;i++){ if(tmp % 10 == 0) sum += 10; else sum += tmp % 10; tmp /= 10; } printf("%d\n",sum); return 0; }