結果
| 問題 | No.656 ゴルフ |
| コンテスト | |
| ユーザー |
kryu_______2740
|
| 提出日時 | 2018-04-19 12:46:00 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 96 ms / 2,000 ms |
| コード長 | 122 bytes |
| 記録 | |
| コンパイル時間 | 515 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-03-14 10:54:20 |
| 合計ジャッジ時間 | 1,949 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_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