結果
問題 | No.661 ハローキティはりんご3個分 |
ユーザー | HAGI_TARO |
提出日時 | 2021-09-24 13:18:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 109 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 82,404 KB |
実行使用メモリ | 52,868 KB |
最終ジャッジ日時 | 2024-07-05 09:41:46 |
合計ジャッジ時間 | 786 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
S = input() ans = 0 for i in S: if i == "0": ans += 10 else: ans += int(i) print(ans)