結果

問題 No.656 ゴルフ
ユーザー トミートミー
提出日時 2024-07-11 23:10:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 75,404 KB
最終ジャッジ日時 2024-07-11 23:10:55
合計ジャッジ時間 1,551 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,404 KB
testcase_01 AC 75 ms
74,680 KB
testcase_02 AC 73 ms
74,556 KB
testcase_03 AC 80 ms
74,976 KB
testcase_04 AC 76 ms
74,620 KB
testcase_05 AC 75 ms
74,604 KB
testcase_06 AC 73 ms
74,672 KB
testcase_07 AC 76 ms
74,616 KB
testcase_08 AC 74 ms
74,660 KB
testcase_09 AC 76 ms
74,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from pprint import pprint

def main():
    s=input()
    cnt=0
    for i in range(len(s)):
        if int(s[i])==0:
            cnt+=10
        else:
            cnt+=int(s[i])
    print(cnt)
    
    
if __name__ == "__main__":
    main()
0