結果
問題 |
No.191 供託金
|
ユーザー |
![]() |
提出日時 | 2018-01-29 01:50:33 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 221 bytes |
コンパイル時間 | 127 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-12-29 16:24:28 |
合計ジャッジ時間 | 1,928 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 19 WA * 4 |
ソースコード
N = int(input()) C = sorted([int(x) for x in input().split()], reverse=True) P = sum(C) for i, c in enumerate(C): if c <= P//10: print((len(C) - i)*30) break else: print(0) break