結果
問題 |
No.191 供託金
|
ユーザー |
|
提出日時 | 2021-06-22 21:44:12 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 37 ms / 5,000 ms |
コード長 | 115 bytes |
コンパイル時間 | 217 ms |
コンパイル使用メモリ | 82,316 KB |
実行使用メモリ | 53,560 KB |
最終ジャッジ日時 | 2024-06-23 17:45:32 |
合計ジャッジ時間 | 2,342 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
N = int(input()) C = list(map(int, input().split())) total = sum(C) print(sum([30 for v in C if v <= total / 10]))