結果
問題 |
No.509 塗りつぶしツール
|
ユーザー |
|
提出日時 | 2022-02-02 20:45:02 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 124 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 52,224 KB |
最終ジャッジ日時 | 2024-06-11 09:36:00 |
合計ジャッジ時間 | 2,504 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 WA * 16 |
ソースコード
N = input() d = {'0':3,'1':2,'2':2,'3':2,'4':3,'5':2,'6':3,'7':2,'8':4,'9':3} ans = 1 for i in N: ans += d[i] print(ans)