結果
問題 |
No.216 FAC
|
ユーザー |
![]() |
提出日時 | 2020-04-10 20:48:41 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 1,000 ms |
コード長 | 214 bytes |
コンパイル時間 | 97 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-15 13:15:33 |
合計ジャッジ時間 | 1,917 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
n = int(input()) a = list(map(int, input().split())) b = list(map(int, input().split())) s = [0 for i in range(101)] for i in range(n): s[b[i]] += a[i] if s[0] == max(s): print("YES") else: print("NO")