結果
| 問題 | No.602 隠されていたゲーム2 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-23 22:07:20 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 140 bytes |
| 記録 | |
| コンパイル時間 | 338 ms |
| コンパイル使用メモリ | 85,760 KB |
| 実行使用メモリ | 82,432 KB |
| 最終ジャッジ日時 | 2026-04-09 00:22:54 |
| 合計ジャッジ時間 | 2,962 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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)