結果
| 問題 | No.191 供託金 |
| コンテスト | |
| ユーザー |
Gmorning084
|
| 提出日時 | 2017-05-25 07:39:51 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 146 bytes |
| 記録 | |
| コンパイル時間 | 314 ms |
| コンパイル使用メモリ | 21,468 KB |
| 実行使用メモリ | 20,556 KB |
| 最終ジャッジ日時 | 2026-08-31 07:10:40 |
| 合計ジャッジ時間 | 4,295 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 RE * 1 |
ソースコード
n = int(input())
c = list(map(int,input().split(" ")))
k = 0
for i in range(n):
if c[i]/sum(c) <= 0.1:
k = k + 30
print(k)
Gmorning084