結果
| 問題 |
No.216 FAC
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-05-11 11:07:25 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 37 ms / 1,000 ms |
| コード長 | 317 bytes |
| コンパイル時間 | 107 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-12-20 08:26:01 |
| 合計ジャッジ時間 | 1,950 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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')