結果
| 問題 | No.656 ゴルフ |
| コンテスト | |
| ユーザー |
kryu_______2740
|
| 提出日時 | 2018-04-19 12:46:00 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 92 ms / 2,000 ms |
| + 421µs | |
| コード長 | 122 bytes |
| 記録 | |
| コンパイル時間 | 468 ms |
| コンパイル使用メモリ | 21,536 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-07-30 23:10:29 |
| 合計ジャッジ時間 | 2,727 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 6 |
ソースコード
N = [int(x) for x in list(input())]
score = 0
for x in N:
score = score + x
score = score + 10*N.count(0)
print(score)
kryu_______2740