結果

問題 No.216 FAC
ユーザー boya978
提出日時 2019-09-05 04:22:36
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 383 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-31 00:09:44
合計ジャッジ時間 2,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14 WA * 5 RE * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
scores = list(map(int,input().split()))
winners = input().split()
dict = {}

for i in range(n):
    if not winners[i] in dict:
        dict[winners[i]] = scores[i]
    else:
        dict[winners[i]] += scores[i]

K = dict["0"]
rank=[]
for key,value in dict.items():
    rank.append(value)

rank.reverse()

if K >= rank[0]:
    print("YES")
else:
    print("NO")
    

0