結果

問題 No.975 ミスターマックスバリュ
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2020-12-15 12:34:47
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 185 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 81,812 KB
実行使用メモリ 73,628 KB
最終ジャッジ日時 2023-10-20 05:57:00
合計ジャッジ時間 1,676 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 36 ms
53,336 KB
testcase_03 AC 36 ms
53,336 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 38 ms
53,336 KB
testcase_10 AC 36 ms
53,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

f=lambda:map(int,input().split())
x,n,m=f()
a=f()
b=f()
ans=['MrMax','MaxValu','MrMaxValu','-1']
print(ans[2] if x in a and x in b else ans[0] if x in a else ans[1] if x in b else a[3])
0