結果

問題 No.216 FAC
ユーザー convexineqconvexineq
提出日時 2020-12-17 21:01:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 171 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 53,700 KB
最終ジャッジ日時 2024-09-21 08:15:37
合計ジャッジ時間 2,483 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,560 KB
testcase_01 AC 38 ms
52,956 KB
testcase_02 AC 38 ms
52,360 KB
testcase_03 AC 38 ms
51,824 KB
testcase_04 AC 41 ms
53,292 KB
testcase_05 AC 38 ms
53,560 KB
testcase_06 AC 38 ms
53,016 KB
testcase_07 AC 38 ms
52,832 KB
testcase_08 AC 38 ms
51,956 KB
testcase_09 AC 38 ms
53,220 KB
testcase_10 AC 37 ms
51,824 KB
testcase_11 AC 38 ms
52,600 KB
testcase_12 AC 38 ms
52,468 KB
testcase_13 AC 38 ms
53,468 KB
testcase_14 AC 38 ms
52,456 KB
testcase_15 AC 38 ms
52,572 KB
testcase_16 AC 40 ms
53,700 KB
testcase_17 AC 38 ms
52,316 KB
testcase_18 AC 39 ms
52,320 KB
testcase_19 AC 37 ms
53,472 KB
testcase_20 AC 38 ms
53,264 KB
testcase_21 AC 38 ms
52,396 KB
testcase_22 AC 38 ms
52,772 KB
testcase_23 AC 37 ms
53,200 KB
testcase_24 AC 37 ms
53,096 KB
testcase_25 AC 37 ms
52,508 KB
testcase_26 AC 37 ms
52,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
*b, = map(int,input().split())

r = [0]*101
for ai,bi in zip(a,b):
    r[bi] += ai
print("YES" if max(r) == r[0] else "NO")
0