結果
問題 |
No.191 供託金
|
ユーザー |
![]() |
提出日時 | 2020-04-08 17:03:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 132 bytes |
コンパイル時間 | 225 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-18 16:45:30 |
合計ジャッジ時間 | 1,784 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 21 WA * 2 |
ソースコード
n = int(input()) C = list(map(int,input().split())) line = sum(C)/10 ret = 0 for c in C: if c<line: ret += 30 print(ret)