結果

問題 No.975 ミスターマックスバリュ
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2020-12-15 12:33:23
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 183 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 81,576 KB
実行使用メモリ 73,396 KB
最終ジャッジ日時 2023-10-20 05:56:53
合計ジャッジ時間 1,751 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 37 ms
53,336 KB
testcase_03 AC 38 ms
53,336 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 37 ms
53,336 KB
testcase_10 AC 38 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