結果

問題 No.216 FAC
ユーザー roccoderroccoder
提出日時 2017-06-13 14:05:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 1,000 ms
コード長 385 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-24 16:56:07
合計ジャッジ時間 1,579 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

# your code goes here
#216 FAC
N=int(input())
a=[int(i) for i in input().split()]
b=[int(i) for i in input().split()]
M=[0]*101
K=0
i=0
while i<len(b):
    if b[i]>0:
        M[b[i]]+=a[i]
    else:
        K+=a[i]
    i+=1
S=0
i=0
while i<len(a)-1:
    S+=a[i]
    i+=1
Ma=0
i=0
while i<len(M):
    if Ma<M[i]:
        Ma=M[i]
    i+=1
if K>=Ma:
    print("YES")
else:
    print("NO")
0