結果
| 問題 |
No.216 FAC
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-01-03 13:28:21 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 258 bytes |
| コンパイル時間 | 123 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-12-16 06:17:13 |
| 合計ジャッジ時間 | 1,908 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 WA * 3 RE * 15 |
ソースコード
# 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 in b:
score[i] += a[i]
if score[0] == max(score):
print("YES")
else:
print("NO")