結果

問題 No.289 数字を全て足そう
ユーザー Navier_Boltzmann
提出日時 2022-09-16 05:55:42
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 191 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 67,836 KB
最終ジャッジ日時 2024-12-18 00:22:26
合計ジャッジ時間 2,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 RE * 2
other AC * 2 RE * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math

input = sys.stdin.readline

S = list(input())[:-1]
print(sum(int(i) for i in S))
0