結果
問題 | No.216 FAC |
ユーザー | kisaragi211 |
提出日時 | 2018-01-18 22:46:50 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 37 ms / 1,000 ms |
コード長 | 397 bytes |
コンパイル時間 | 111 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-12-24 07:47:04 |
合計ジャッジ時間 | 1,871 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
def main(): N = int(input()) a = list(map(int, input().split())) b = list(map(int, input().split())) ab = {i:0 for i in set(b)} if 0 in b: for x in range(N): ab[b[x]] += a[x] if max(ab.values()) == ab[0]: print('YES') else: print('NO') else: print('NO') if __name__ == '__main__': main()