結果
問題 | No.216 FAC |
ユーザー | HIROPON87069639 |
提出日時 | 2016-02-27 15:52:49 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 14 ms / 1,000 ms |
コード長 | 286 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-10-15 00:46:58 |
合計ジャッジ時間 | 1,113 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
# -*- coding: utf-8 -*- N = input() A = map(int, raw_input().split()) B = map(int, raw_input().split()) P = [0] * 101 for i in range(0, N): if B[i] == 0: P[100] += A[i] else: P[B[i]-1] += A[i] maxP = max(P) if maxP == P[100]: print "YES" else: print "NO"