結果

問題 No.1168 Digit Sum Sequence
ユーザー mh1890
提出日時 2022-08-14 14:56:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 107 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 53,772 KB
最終ジャッジ日時 2024-10-01 07:27:51
合計ジャッジ時間 2,340 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

a = input()
array = list(map(int, a))
b = str(sum(array))
array = list(map(int, b))
c = sum(array)
print(c)
0