結果
| 問題 | No.216 FAC |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-05-11 11:07:25 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 95 ms / 1,000 ms |
| コード長 | 317 bytes |
| 記録 | |
| コンパイル時間 | 447 ms |
| コンパイル使用メモリ | 20,704 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-05-27 10:17:47 |
| 合計ジャッジ時間 | 4,154 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 24 |
ソースコード
n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
dic = {}
for i in range(n):
if B[i] not in dic:
dic[B[i]] = A[i]
else:
dic[B[i]] += A[i]
ans = sorted(dic.items(), key=lambda x:(-x[1], x[0]))
if ans[0][0] == 0:
print('YES')
else:
print('NO')