結果
| 問題 | No.217 魔方陣を作ろう |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-05-26 22:45:08 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 205 bytes |
| 記録 | |
| コンパイル時間 | 69 ms |
| コンパイル使用メモリ | 80,512 KB |
| 実行使用メモリ | 81,152 KB |
| 最終ジャッジ日時 | 2026-07-17 15:18:58 |
| 合計ジャッジ時間 | 2,821 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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"