結果

問題 No.975 ミスターマックスバリュ
ユーザー osrgy01
提出日時 2021-01-15 10:40:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 194 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,204 KB
最終ジャッジ日時 2024-11-25 08:20:18
合計ジャッジ時間 1,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 2 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

x,n,m=map(int,input().split())
a=[*map(int,input().split())]
b=[*map(int,input().split())]
if x in a and x in b:
    print('MrMaxValu')
elif x in a:
    print('MeMax')
else:
    print('MaxValu')
0