結果
| 問題 | No.217 魔方陣を作ろう |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-05-26 22:45:08 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 205 bytes |
| 記録 | |
| コンパイル時間 | 128 ms |
| コンパイル使用メモリ | 77,492 KB |
| 最終ジャッジ日時 | 2025-12-03 15:16:44 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 18 |
ソースコード
N = input()
a = map(int, raw_input().split())
b = map(int, raw_input().split())
score = [0] * 110
for i in xrange(N):
score[b[i]] += a[i]
if max(score) == score[0]:
print "YES"
else:
print "NO"