結果

問題 No.216 FAC
ユーザー steek79steek79
提出日時 2015-10-16 00:55:02
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 235 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-21 16:43:05
合計ジャッジ時間 1,181 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,272 KB
testcase_01 AC 10 ms
6,272 KB
testcase_02 AC 10 ms
6,400 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 10 ms
6,400 KB
testcase_08 WA -
testcase_09 AC 9 ms
6,272 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 10 ms
6,272 KB
testcase_17 RE -
testcase_18 AC 10 ms
6,272 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 9 ms
6,400 KB
testcase_22 RE -
testcase_23 AC 10 ms
6,272 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
problems = map(int, raw_input().split())
solvers = map(int, raw_input().split())

scorelist = [0] * 105
for s in solvers:
    scorelist[s] += problems[s]

if max(scorelist) == scorelist[0]:
    print 'YES'
else: print 'NO'
0