結果
| 問題 | No.602 隠されていたゲーム2 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-23 22:07:20 |
| 言語 | PyPy3 (7.3.23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 140 bytes |
| 記録 | |
| コンパイル時間 | 229 ms |
| コンパイル使用メモリ | 95,952 KB |
| 実行使用メモリ | 98,124 KB |
| 最終ジャッジ日時 | 2026-08-31 19:48:25 |
| 合計ジャッジ時間 | 4,038 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 7 WA * 14 |
ソースコード
n = int(input())
D = list(map(int,input().split()))
x,y = map(int,input().split())
if x+y in D:
print(1)
else:
print(-1)