結果
問題 | No.191 供託金 |
ユーザー | kisaragi211 |
提出日時 | 2018-01-20 16:05:01 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 39 ms / 5,000 ms |
コード長 | 256 bytes |
コンパイル時間 | 108 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-12-25 03:02:56 |
合計ジャッジ時間 | 2,201 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
def main():N = int(input())C = list(map(int, input().split()))total = sum(C)b = total // 10count = 0for x in range(N):if C[x] <= b:count += 1print(count*30)if __name__ == '__main__':main()