結果
| 問題 | No.191 供託金 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-05-28 15:50:15 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 251 bytes |
| 記録 | |
| コンパイル時間 | 245 ms |
| コンパイル使用メモリ | 77,496 KB |
| 最終ジャッジ日時 | 2025-12-03 15:17:40 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 RE * 1 |
ソースコード
# -*- coding:utf-8 -*- import sys if __name__ == "__main__": n = input() if n == 0: print 0 sys.exit() nums = map(int,raw_input().split()) sum = 0 ans = 0 for i in nums: sum += i for i in nums: if sum / i >= 10: ans += 30 print ans