結果
問題 |
No.656 ゴルフ
|
ユーザー |
![]() |
提出日時 | 2020-03-31 16:37:26 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 151 bytes |
コンパイル時間 | 350 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-24 20:06:34 |
合計ジャッジ時間 | 1,109 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 4 |
other | RE * 6 |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() ans=0 S=int(input()) for s in S: s=int(s) if s==0: ans+=10 else: ans+=s print(ans)