結果

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

ソースコード

diff #

# yukicoder No.216 FAC

N = int(input())
a = [int(i) for i in input().split()]
b = [int(i) for i in input().split()]
score = [0] * (100 + 1) # 0番目をK君とする

for (i, j) in zip(a, b):
	score[j] += i

if score[0] == max(score):
	print("YES")
else:
	print("NO")
0