結果
| 問題 | No.975 ミスターマックスバリュ |
| コンテスト | |
| ユーザー |
tachyon777
|
| 提出日時 | 2020-02-13 12:13:16 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 36 ms / 2,000 ms |
| + 637µs | |
| コード長 | 264 bytes |
| 記録 | |
| コンパイル時間 | 77 ms |
| コンパイル使用メモリ | 81,024 KB |
| 実行使用メモリ | 72,576 KB |
| 最終ジャッジ日時 | 2026-09-10 16:06:49 |
| 合計ジャッジ時間 | 1,491 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 |
ソースコード
x,n,m = map(int,input().split())
lst1 = list(map(int,input().split()))
lst2 = list(map(int,input().split()))
tf1 = x in lst1
tf2 = x in lst2
if tf1 and tf2:
print("MrMaxValu")
elif tf1:
print("MrMax")
elif tf2:
print("MaxValu")
else:
print("-1")
tachyon777