結果

問題 No.975 ミスターマックスバリュ
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2020-12-15 12:33:23
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 183 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 81,752 KB
実行使用メモリ 74,200 KB
最終ジャッジ日時 2024-09-20 01:36:50
合計ジャッジ時間 1,349 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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