結果

問題 No.216 FAC
ユーザー hiro1729hiro1729
提出日時 2023-09-10 20:40:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 181 bytes
コンパイル時間 937 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 53,592 KB
最終ジャッジ日時 2024-06-28 11:46:17
合計ジャッジ時間 2,169 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,756 KB
testcase_01 AC 39 ms
52,564 KB
testcase_02 AC 39 ms
53,224 KB
testcase_03 AC 37 ms
52,628 KB
testcase_04 AC 38 ms
52,296 KB
testcase_05 AC 38 ms
52,080 KB
testcase_06 AC 42 ms
53,076 KB
testcase_07 AC 40 ms
52,612 KB
testcase_08 AC 41 ms
51,996 KB
testcase_09 AC 39 ms
52,072 KB
testcase_10 AC 41 ms
52,204 KB
testcase_11 AC 40 ms
53,212 KB
testcase_12 AC 39 ms
52,696 KB
testcase_13 AC 41 ms
52,696 KB
testcase_14 AC 39 ms
52,424 KB
testcase_15 AC 39 ms
53,056 KB
testcase_16 AC 39 ms
52,076 KB
testcase_17 AC 41 ms
52,364 KB
testcase_18 AC 39 ms
53,068 KB
testcase_19 AC 39 ms
53,592 KB
testcase_20 AC 39 ms
53,536 KB
testcase_21 AC 40 ms
51,864 KB
testcase_22 AC 38 ms
53,456 KB
testcase_23 AC 38 ms
52,880 KB
testcase_24 AC 39 ms
51,808 KB
testcase_25 AC 38 ms
51,944 KB
testcase_26 AC 37 ms
52,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
c = [0] * 101
for i, j in zip(a, b):
	c[j] += i
print("YES" if c[0] >= max(c[1:]) else "NO")
0