結果

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

ソースコード

diff #

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

if not "0" in winners:
    print("No")
    exit()

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)

if K >= max(rank):
    print("YES")
else:
    print("NO")

0