結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
gim
|
| 提出日時 | 2017-06-15 17:51:35 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 229 bytes |
| 記録 | |
| コンパイル時間 | 131 ms |
| コンパイル使用メモリ | 77,468 KB |
| 最終ジャッジ日時 | 2025-12-04 00:08:12 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 34 |
ソースコード
n=raw_input()
L=map(int, n.split())
print int(L[0]*(L[1]/100.0) + L[0])
L=raw_input()
N=raw_input()
w=raw_input()
W=map(int, w.split())
c=0
mx=0
W.sort()
for a in W:
c+=a
if c<=int(L):
mx+=1
print mx
gim