結果

問題 No.216 FAC
ユーザー HAGI_TARO
提出日時 2021-10-22 09:28:45
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 213 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 67,092 KB
最終ジャッジ日時 2024-09-22 10:39:44
合計ジャッジ時間 2,657 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13 RE * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
score = [0] * 100
A = list(map(int,input().split()))
B = list(map(int,input().split()))
for i in range(n):
    score[B[i]] += A[i]
if score[0] == max(score):
    print("YES")
else:
    print("NO")
0